vote up 5 vote down star
2

Basically I'm converting local dates stored in the database into UTC. But I've read somewhere that daylight saving rules have changed in 2007. So does the Date.ToUniversalTime() function still work correctly. Basically the dates before 2007(when the new rules came into effect) would be converted correctly but the dates after that would be not. Am I right here? Or would .Net take care of the conversion internally i.e. depending upon the different daylight saving rules?

EDIT: Dates are stored in DB as local times. I am converting it into UTC. So a date such as '9 March 2005' should be converted using day light rules of 2005 instead of today's rules. The rules changed in the US in 2007. So the date is coming out wrong by one hour.

flag

54% accept rate

5 Answers

vote up 0 vote down

I would expect ToUniversalTime() to take that into account. Have you tried and checked the result with dates from before and after the DST change?

EDIT

If you know the timezone offset of all the dates in your DB, I definitively recommend you to convert them to UTC at the table level. You get rid of a whole lot of headaches that way. Converting to local time for display purposes is easier.

link|flag
Yes the dates before 2007 are coming out incorrectly for 2 months because .Net is following the day light saving rules of today. – Daud Oct 21 '08 at 13:21
vote up 1 vote down

It will depend on which version of .NET you're using and possibly which version of Windows you're using. .NET 3.5 has the TimeZoneInfo class which includes historical changes etc - before then, the support was far more patchy, unfortunately.

link|flag
How could this work? TimeZoneInfo would need to know when the value was added to the db in order to know which rules to apply – Isak Savo Oct 21 '08 at 13:24
Windows started supporting a rich timezone model (with historical changes) relatively recently - possibly with 2K3 or maybe even Vista and then service packs to older OSes. The .NET support used to follow the old model (one set of rules, perpetually applied). TimeZoneInfo follows the new model. – Jon Skeet Oct 21 '08 at 13:28
Yeah, but assume I have this date in the db: "2005-03-10 03:30" (expressed in "localtime") How can TimeZoneInfo convert this date to UTC time without knowing which DST rules were used to save it in the first place? – Isak Savo Oct 21 '08 at 13:29
It would have to assume that the DST rules were correct at the time of insertion. There are some ambiguities (local times which occur twice etc) but it's manageable. However, the OP stated that the database contained UTC values. – Jon Skeet Oct 21 '08 at 13:31
@Isak: It wouldn't need to know when the value was added to the database. Only if the value itself is that old, and since that's what the value is, there shouldn't be a problem. – Joel Coehoorn Oct 21 '08 at 13:31
show 6 more comments
vote up 1 vote down

It depends on how the information is stored in the database.

Hopefully, the data in the db contains the UTC offset, and if so, any changes to daylight saving rules will be irrelevant.

If the UTC offset isn't known then it is virtually impossible to know how to convert it to UTC. For example, if the time is stored as an integer with no metadata then the system would have to know when it was added to the db to be able to figure out the corresponding UTC timestamp.

link|flag
The time is stored as local time in DB. Needs to be converted to UTC obeying the rules of day light saving at that time. – Daud Oct 21 '08 at 13:24
Changes to daylight savings rules won't be irrelevant - if you're converting to local time for display purposes, and you're displaying old dates/times, they'll be wrong :( – Jon Skeet Oct 21 '08 at 13:24
@Jon: ah, you're meaning the answer to the question "Was this date during DST period or not?"? If so, sure the rules are relevant. But not for the conversion to UTC (since the actual datetime in the db contains the real offset) – Isak Savo Oct 21 '08 at 13:27
Ah, I see what you mean by "the UTC offset" now - I thought you meant "the UTC value". – Jon Skeet Oct 21 '08 at 13:30
Daylight savings time might be one of the top 10 worst ideas they've ever had. I can't think of a single problem this concept solves, but a whole bunch of problems it creates. – Tomalak Oct 21 '08 at 13:33
show 4 more comments
vote up 1 vote down

i hate to say it, but you are screwed. Bite the bullet and change the dates in the database to UTC before the problem gets any worse. Your code will become a nightmare of special-case date-math in no time flat if you continue to try to store local times in the database.

compromise: store both local time and UTC time in separate columns; at least then you'll have a reference

see this post for more reasons never to store db times in local time

link|flag
vote up 0 vote down

See if http://geekswithblogs.net/ewright/archive/2004/09/14/11180.aspx helps you at all.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.