quartz scheduler - Configurando ADOJobStore con Quartz.net
quartz-scheduler (1)
Aquí hay un ejemplo adaptado de configuración programática del ejemplo 13 de Quartz.NET:
NameValueCollection properties = new NameValueCollection();
properties["quartz.scheduler.instanceName"] = "TestScheduler";
properties["quartz.scheduler.instanceId"] = "instance_one";
properties["quartz.jobStore.type"] = "Quartz.Impl.AdoJobStore.JobStoreTX, Quartz";
properties["quartz.jobStore.useProperties"] = "true";
properties["quartz.jobStore.dataSource"] = "default";
properties["quartz.jobStore.tablePrefix"] = "QRTZ_";
// if running MS SQL Server we need this
properties["quartz.jobStore.lockHandler.type"] = "Quartz.Impl.AdoJobStore.UpdateLockRowSemaphore, Quartz";
properties["quartz.dataSource.default.connectionString"] = "Server=(local);Database=quartz;Trusted_Connection=True;";
properties["quartz.dataSource.default.provider"] = "SqlServer-20";
// First we must get a reference to a scheduler
ISchedulerFactory sf = new StdSchedulerFactory(properties);
IScheduler sched = sf.GetScheduler();
También puede lograr lo mismo con el enfoque basado en el archivo de propiedades (el archivo .config).
¿Cómo configurar una tienda de trabajo con Quartz.net. El tutorial que tienen en el sitio no es de ayuda para mí.
En esta página, aunque hay pasos http://quartznet.sourceforge.net/tutorial/lesson_9.html , no puedo ver cómo configurar este
org.quartz.jobStore.type = Quartz.Impl.AdoJobStore.JobStoreTX, Quartz
Gracias