I need help in retrieving the data from database using Quartz. I am reading the hibernate properties from config.xml in the main class and using those properties I tried to retr
If you are trying to created a scheduled job that updates your database how about using Spring Task.
Here is an example: How to stop jobs scheduled using spring task
Then just call your method that performs your database update.