views:

99

answers:

1

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.

+3  A: 

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

    DateTime d = new DateTime(634019848980000000);
    Console.WriteLine(d.ToString());
Behrooz
Thanks Behrooz :)
Bipul