Hi,
My database is located in e.g. california. My user table has all the user's timezone e.g. -0700 UTC
How can I adjust the time from my database server whenever I display a date to the user who lives in e.g. new york? UTC/GMT -4 hours
|
2
|
|
|
|
|
|
You should store your data in UTC format and showing it in local timezone format.
You can adjust date/time using AddXXX methods group, but it can be error prone. .NET has support for time zones in System.TimeZoneInfo class. |
|||
|
|
|
|
Up until .NET 3.5 (VS 2008), .NET does not have any built-in support for timezones, apart from converting to and from UTC. If the time difference is always exactly 3 hours all year long (summer and winter), simply use |
|||
|
|
|
|
You could use a combination of TimeZoneInfo.GetSystemTimeZones() and then use the TimeZoneInfo.BaseUtcOffset property to offset the time in the database based on the offset difference Info on System.TimeZoneInfo here |
||
|
|
|
|
Have you looked at SQL's GETUTCDATE() function? That will give the server UTC time, then use DATEADD() to adjust using your timezone. |
||
|
|
|
|
You know, this is a good question. This year I've done my first DB application and as my input data related to time is an Int64 value, that is what I stored off in the DB. My client applications retrieve it and do DateTime.FromUTC() or FromFileTimeUTC() on that value and do a .LocalTime() to show things in their local time. I've wondered whether this was good/bad/terrible but it has worked well enough for my needs thus far. Of course the work ends up being done by a data access layer library I wrote and not in the DB itself. Seems to work well enough, but I trust others who have more experience with this sort of thing could point out where this is not the best approach. Good Luck! |
||
|
|
|
|
If you use .Net, you can use The first step is getting the
Then, after you read a
Finally, in order to convert to a different time zone, simply do this:
Some extra remarks:
I hope this helps. :) |
|||
|
|