Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

319
votes
22answers
18k views

Daylight saving time and Timezone best practices

I am hoping to make this question and the answers to it the definitive guide to dealing with daylight saving time, in particular for dealing with the actual change overs. If you have anything to add, ...
14
votes
2answers
3k views

When Would You Prefer DateTime Over DateTimeOffset

A few months ago I was introduced to the new DateTimeOffset type and was glad DateTime's flaws with regard to time zones were finally taken care of. However, I was left wondering if there were any ...
10
votes
4answers
7k views

Determine Whether Daylight Savings Time (DST) is Active in Java for a Specified Date

I have a Java class that takes in the latitude/longitude of a location and returns the GMT offset when daylight savings time is on and off. I am looking for an easy way to determine in Java if the ...
8
votes
1answer
2k views

How to use TimeZoneInfo to get local time during Daylight Savings Time?

I'm trying to use DateTimeOffset to convey a specific moment in time across any time zone. I can't figure out how to use TimeZoneInfo to deal with daylight savings time. var dt = DateTime.UtcNow; ...
7
votes
4answers
781 views

Unit testing NHibernate w/ SQLite and DateTimeOffset mappings

Porting over an application to use NHibernate from a different ORM. I've started to put in place the ability to run our unit tests against an in memory SQLite database. This works on the first few ...
6
votes
2answers
1k views

Storing DateTime (UTC) vs. storing DateTimeOffset

I usually have an "interceptor" that right before reading/writing from/to the database does datetime conversion (from UTC to localtime, and from localtime to utc), so I can use DateTime.Now ...
5
votes
3answers
391 views

Difference between System.DateTime and System.DateTimeOffset

Can anyone explain the difference between System.DateTime and System.DateTimeOffset in C#.NET? Which is best suited for building web apps with users from different time zones?
5
votes
3answers
2k views

Storing a c# DateTimeOffset value in a SQL Server 2005 database

I want to store a a c# DateTimeOffset value in a SQL Server 2005 database. Sql 2008 has this as a built-in-type, but SQL Server 2005 does not. The DateTimeOffset structure has a DateTime value wich ...
3
votes
3answers
100 views

How many days to add for “semi-monthly”

I have a enum type called PaymentFrequency whose values indicate how many payments per year are being made... So I have public enum PaymentFrequency { None = 0, Annually ...
3
votes
1answer
187 views

DateTimeOffset display after daylight savings change

I have a question about DateTimeOffset and daylight savings time. To explain my question lets assume that right now the date and time is: 11/6/2010 10:15:00 AM If I run this code: ...
3
votes
2answers
422 views

Changing current user timezone based on server UTC offset and user UTC offset

im writing a twitter web service in php. When a user signs in, i receive this node: <utc_offset>-18000</utc_offset> I have to change the script's timezone so that it adapts to the ...
3
votes
3answers
501 views

Parse a date string into a certain timezone (supporting daylight saving time)

Ok i've been working very hard the last few weeks and i've come across a small problem. I don't think my mind is quite up to the task right now :) so i need some tips/help! it's likely very simple but ...
3
votes
3answers
2k views

Entity Framework 4 maps DateTimeOffset to SQL datetime in Visual Studio 2010

I'm using Visual Studio 2010 RTM with .NET/Entity Framework 4 RTM with a model driven design approach. When I create an entity with a DateTimeOffset field the EF modeler tries to map the ...
3
votes
4answers
3k views

Sql Server DateTime to DateTimeOffset

I have an old table with a few rows that has a datetime column. I want to switch this to datetimeoffset but i want to be able to transfer the data that already exists. So i'm doing something like ...
3
votes
3answers
364 views

Why does a datetimeoffset have 28 hours of timezones?

I am looking into using the datetimeoffset for SQL Server 2008. According to the MSDN article there is a time zone offset range of -14:00 through +14:00. I can understand going 12 hours from UTC in ...
3
votes
2answers
796 views

How to convert .NET DateTimeOffset ito Sql2008 DateTimeOffset

i'm not sure how to correctly format a .NET DateTimeOffset variable, as a string, for SqlServer 2008 to correct parse the value. currently, if i provide the default .ToString() value from a normal ...
2
votes
2answers
411 views

php DateTimeZone->getOffset() returns invalid offset for GMT timezones

Hopefully someone notices what is the cause for the problem I'm having. For all other timezones such as "Europe/Helsinki" the offset calculation below returns correct values, but for some reason I ...
2
votes
2answers
2k views

How can I convert a Sql Server 2008 DateTimeOffset to a DateTime

I'm hoping to convert a table which has a DATETIMEOFFSET field, down to a DATETIME field BUT recalculates the time by taking notice of the offset. This, in effect, converts the value to UTC. eg. ...
2
votes
2answers
1k views

'System.DateTimeOffset' from assembly 'mscorlib, Version=2.0.0.0

My Windows Form application (created in Visual Studio 2008 using C#) is distributed across our company and runs on 50+ PCs with no issues. Yesterday, I had to install it on an old PC running WinXP. ...
2
votes
2answers
390 views

datetimeoffset hibernate mapping

I'm trying to use hibernate with ms sql server and have difficulties mapping the sql type datetimeoffset to java. If I try to set the mapping type in the reverse engineering configuration with: I ...
2
votes
3answers
282 views

PHP Offset timezone times

I have written a PHP application and I've connceted to another database to display data. In the database, the data says '2009-12-31 22:30:00'. Their website displays the data as 8:00pm (1.5 hrs off) ...
2
votes
4answers
587 views

Javascript ASP.net date format without timezone info - timezone offsets

I have a client side JavaScript that generates a date in JavaScript( new Date(2007,5,1)). I need this date passed through to a hidden field that the code behind can access. My issue is that when the ...
2
votes
1answer
971 views

Working with Time Zones in SSRS

We store all our dates SQL Server 2008 database in UTC time in DateTime columns. I'm using SSRS to create reports and I need to convert all the times on the reports to the Time Zone of the computer ...
2
votes
2answers
577 views

DateTimeOffsetAdapter interfering with WCF serialization of DateTimeOffset objects

I have a WCF service reference (= client proxy) generated by Visual Studio 2008 (.net 3.5 sp1). The generated code contains a data contract with DateTimeOffset properties so naturally VS decorated it ...
1
vote
1answer
39 views

Which SQL datatype should I use to store datetime from GPS devices?

I'm working on a project where I have to gather data from GPS devices located in different countries (timezones + daylight savings) and display those data to different users also from different ...
1
vote
2answers
147 views

SSIS Format Date YYYYMMDD with day offset of X days?

This below evaluation will give me a date set to the format yyyymmdd as an int. What I need to do it have the ability in SSIS to offset the day by X days and keep the month and year offset ...
1
vote
2answers
49 views

SQLite Format Datetime with Offset

I want to only return the date from a datetime column in sqlite3. The problem is I have to have the offset in it. The column is called ClientCreatedDate and the value is 2011-10-24 20:53:15 +0000 ...
1
vote
1answer
192 views

Ruby strptime with Timezone

I have a String which I parse with DateTime.strptime. The Timezone of the Date in the String is CET but Ruby creates an UTC DateTime Object which ofcourse has an offset of 2hrs. currently im working ...
1
vote
1answer
65 views

Do I need to get client's actual timezone or can I assume they are all in the EST timezone? (US-only web application)

I have a question about dealing with date & time in my web application. The application will sell monthly subscriptions. It shows dates only when clients buy and cancel subscriptions. Clients can ...
1
vote
1answer
82 views

Converting DateTime.MinValue to DateTimeOffset

I am trying to convert DateTime.MinValue to a DateTimeOffset value but am getting an ArgumentOutOfRange exception. I was looking at the the MSDN article on implicit conversions of DateTime to ...
1
vote
2answers
82 views

Converting Top/Left Offset Coordinates into Day/Time

I built a grid and then used the following "showCoordinates" function to calculate positions on the grid of a draggable element. function showCoordinates(divId) { var leftParent= ...
1
vote
2answers
59 views

Generating and ordering timezone regions

How do I output timezone offsets based on the list of regions present in http://php.net/manual/en/timezones.php ? Ideally, I would like it "arranged" in UTC-12:00 to UTC+12:00 format. So, ...
1
vote
1answer
147 views

Ruby: Offset interpreted differently by Time and DateTime

Does anyone know why Time.parse seems to misinterpret the offset?? # Correct: ruby-1.9.2-p136 > DateTime.parse "2011-04-07T13:53:00-3" => Thu, 07 Apr 2011 13:53:00 -0300 ruby-1.9.2-p136 > ...
1
vote
4answers
923 views

C# convert datetimeoffset to string with milliseconds

The default toString() method in datetimeoffset converts the time into string format but loses the milliseconds. Is there anyway to preserve it?
1
vote
1answer
274 views

Crystal Reports and SQL Server 2008 datetimeoffset

SQL Server 2008 introduced new data type datetimeoffset which stores local time and offset between local time and UTC. But when a table containing datetimeoffset column is added to Crystal Reports ...
1
vote
5answers
731 views

Can I derive the number of days since Jan 1 1900 for a given `Date` using just the `java.*` API?

Spreadsheets (MS Excel, Google Apps) represent dates as the number of whole days since Jan 1 1900 (possibly caveat a Feb 29 odditiy in Excel's case). OK, so it's 365 days except on leap years. But ...
1
vote
2answers
222 views

what would be the python code to add time to a specific timestamp?

Trying to figure out datetime module and need help. I've got a string which looks like this: 00:03:12,200 --> 00:03:14,316 (that is hours:minutes:seconds,milliseconds) and need to add let's say ...
1
vote
1answer
285 views

Qt QDateTime nanoseconds from 1/1/1970

I am about to read data From a File which has stored it's time in nanoseconds from 1/1/1970. My problem is I want to read it to a QDateTime object, but it simply does not work as I want it to and the ...
1
vote
1answer
663 views

How can I convert my DateTimeOffset to a Twitter Date/Time?

How can I convert a DateTimeOffset.Now into a twitter-compatible date/time? Twitter example: <created_at>Tue Apr 07 22:52:51 +0000 2009</created_at> cheers :)
1
vote
2answers
450 views

Losing DateTimeOffset precision when using C#

I have a SQL Server table with a CreatedDate field of type DateTimeOffset(2). A sample value which is in the table is 2010-03-01 15:18:58.57 -05:00 As an example, from within C# I retrieve this ...
1
vote
1answer
288 views

Parse string as DateTimeOffset in Expression<Func<T, bool>>

Hey, I am trying to create an Expression<Func<T, bool>> in which a string property is converted/cast to a DateTimeOffset so that DateTimeOffset operations can be performed on it. We are ...
1
vote
3answers
1k views

How do I Increment an NSDate object in Objective-C

I want to take the next day by giving the current date The code i used as follows +(NSDate *)getForDays:(int)days fromDate:(NSDate *) date { NSTimeInterval secondsPerDay = 24 * 60 * 60 * days; ...
1
vote
1answer
443 views

How do I stop the DateTimeOffset scale from causing a ChangeConflictException in linq to Sql?

The following code tries to create a new record and then modify it after it has been committed to the database. The last SubmitChanges() call throws a ChangeConflictException. ItemA itemA = new ...
0
votes
0answers
18 views

Daylight savings time support for datetimeoffset (SQL Server)

If you take a look at this help topic in MSDN: SQL Server Date and Time limitations it says: "No server-side daylight saving time (DST) support for datetimeoffset." Can anyone explain what this ...
0
votes
1answer
65 views

Capturing client Datetimeoffset in WCF service

i have a web service that saves some events from users all over the world. The users can later log in to a report system and view their events. I would need to display the event timestamps in their ...
0
votes
0answers
37 views

PHP Doesn't Display UTC Z TimeZone Designator

When I try to format a date to UTC, It doesn't show the 'z' for the UTC zero timezone designator. Is this a problem with the library? # Define Some date $scheduledDate = "2011-11-23T10:25:00"; echo ...
0
votes
3answers
90 views

Subtract 1 day with PHP

I'm trying to take a date object that's coming out of my Drupal CMS, subtract one day and print out both dates. Here's what I have $date_raw = $messagenode->field_message_date[0]['value']; ...
0
votes
1answer
222 views

How does DateTimeOffset deal with daylight saving time?

I know that DateTimeOffset stores a UTC date/time and an offset. I also know from this MSDN blog entry that DateTimeOffset should be used to "Work with daylight saving times". What I'm struggling to ...
0
votes
0answers
90 views

Using DateTimeOffset in C# web services

Anyone know how to pass DateTimeOffset parameters to web services in C#/VB? (Yes, I know web services is legacy technology, I have no choice about using them). I've defined a webmethod that takes a ...
0
votes
0answers
13 views

look up table for date-time ranges and the UTC displacements for all the time zones

I would like to have a look up table for date-time ranges and the UTC displacements for all the time zones.for sqlserver 2008 database.

1 2