Question

Does anybody know in which format quartz.net stores the times in the QUARTZ_TRIGGERS table. For example I have seen 634019848980000000 in NEXT_FIRE_TIME column, but I am unable to get the exact date time.

It will be very helpful if I can get this. Thanks.

Was it helpful?

Solution

634019848980000000 == 2/17/2010 6:28:18 AM
it is tickcount.

    DateTime d = new DateTime(634019848980000000);
    Console.WriteLine(d.ToString());
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top