Note that there are some explanatory texts on larger screens.

plurals
  1. POQuartz job store is related to active data?
    primarykey
    data
    text
    <p>As I understood from <a href="http://quartznet.sourceforge.net/tutorial/lesson_9.html" rel="nofollow">Quartz official documentation</a>, AdoStore have to be used for active data storing like JobDataMap and other data. Correct me if I am wrong.</p> <p>Beside of this clarification I would like to know is there any way to load job and trigger definition from database. Kind of plugin or something like the <code>Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin</code> is for reading from xml file.</p> <p>If there is not, is it the best solution to implement a custom plugin that will read from database or to use some other approach?</p> <p>[EDIT] Rastko 8/13/2012 11:16:28 AM</p> <p>From bellow answers I think that I have not describe you the problem good. I would like to load job and trigger configuration from database. Like it is defined in code or in xml like this :</p> <pre><code> &lt;job&gt; &lt;name&gt;WriterJob&lt;/name&gt; &lt;group&gt;CommonGroup&lt;/group&gt; &lt;description&gt;Test WriteJob&lt;/description&gt; &lt;job-type&gt;Console.WriteJob, Console&lt;/job-type&gt; &lt;/job&gt; &lt;trigger&gt; &lt;simple&gt; &lt;name&gt;WriterJobTrigger&lt;/name&gt; &lt;group&gt;CommonTriggerGroup&lt;/group&gt; &lt;description&gt;Simple trigger to simply fire sample job&lt;/description&gt; &lt;job-name&gt;WriterJob&lt;/job-name&gt; &lt;job-group&gt;CommonGroup&lt;/job-group&gt; &lt;misfire-instruction&gt;SmartPolicy&lt;/misfire-instruction&gt; &lt;repeat-count&gt;-1&lt;/repeat-count&gt; &lt;repeat-interval&gt;10000&lt;/repeat-interval&gt; &lt;/simple&gt; &lt;/trigger&gt; </code></pre> <p>I want to have this on the same way in DataBase. From generated tables for ADOJobStore I see that these tables are more related for tracking of the currently active jobs - tracking of its state, trigger firing, etc. </p> <p>I hope that I more clear now. Be free to ask me if you need any additional clarification.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload