DateTime objects in many programming languages describe an instant in time, expressed as a date and time of day.

learn more… | top users | synonyms (1)

797
votes
13answers
394k views

How do you get a timestamp in JavaScript?

How can I get a timestamp in JavaScript? Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string.
671
votes
25answers
70k 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, ...
629
votes
18answers
120k views

datetime vs timestamp?

What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
526
votes
37answers
122k views

How do I calculate someone's age

Given a DateTime representing a person's birthday, how do I calculate their age?
377
votes
23answers
501k views

Formatting a date in JavaScript

I noticed that JavaScript's new Date() function is very smart in accepting dates in several formats. Xmas95 = new Date("25 Dec, 1995 23:15:00") Xmas95 = new Date("2009 06 12,12:52:39") Xmas95 = new ...
226
votes
13answers
18k views

Is DateTime.Now the best way to measure a function's performance?

I need to find a bottleneck and need to accurately as possible measure time. Is the following code snippet the best way to measure the performance? DateTime startTime = DateTime.Now; // Some ...
193
votes
12answers
36k views

Determine Whether Two Date Ranges Overlap

Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap? As an example, suppose we have ranges denoted by DateTime variables StartDate1 to ...
185
votes
19answers
241k views

How to calculate the difference between two dates using PHP?

I have two dates of the form: Start Date: 2007-03-24 End Date: 2009-06-26 Now I need to find the difference between these two in the following form: 2 years, 3 months and 2 days How can I do ...
184
votes
9answers
107k views

Python datetime to Unix timestamp

I have to create an "Expires" value 5 minutes in the future, but I have to supply it in UNIX Timestamp format. I have this so far, but it seems like a hack. def expires(): '''return a UNIX style ...
158
votes
5answers
106k views

MySQL Query GROUP BY day / month / year

Is it possible I make a simple query to count how many records I have in a determined period of time like a Year, month or day, having a TIMESTAMP field, like: SELECT COUNT(id) FROM stats WHERE ...
155
votes
5answers
154k views

Converting string into datetime

Short and simple. I've got a huge list of date-times like this as strings: Jun 1 2005 1:33PM Aug 28 1999 12:00AM I'm going to be shoving these back into proper datetime fields in a database so I ...
138
votes
18answers
57k views

How can I get the DateTime for the start of the week?

How do I find the start of the week (both Sunday and Monday) knowing just the current time in C#? Something like: DateTime.Now.StartWeek(Monday);
126
votes
5answers
36k views

Convert date to datetime in Python

Silly question, but is there a built-in method for converting a date to a datetime in Python, ie. getting the datetime for the midnight of the date? The opposite conversion is easy - datetime has a ...
124
votes
13answers
136k views

Best approach to remove time part of datetime in SQL Server

Which method provides the best performance when removing the time portion from a datetime field in SQL Server? a) select DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0) or b) select ...
120
votes
18answers
236k views

How to get current datetime on Windows command line, in a suitable format for using in a filename?

What's a Windows command line statement(s) I can use to get the current datetime in a format that I can put into a filename? I want to have a .bat file that zips up a directory into an archive with ...
118
votes
2answers
31k views

How do you convert a python time.struct_time object into a datetime object?

How do you convert a python time.struct_time object into a datetime.datetime object? I have a library that provides the first one and a second library that wants the second one...
113
votes
8answers
50k views

In C#, given a DateTime object, how do I get a ISO 8601 date in string format?

Given: DateTime.UtcNow How do I get a string which represents the same value in an ISO 8601 compliant format? Note that ISO 8601 defines a number of similar formats: (Wikipedia). The specific ...
107
votes
10answers
136k views

C# - Convert UTC/GMT time to local time

We are developing a C# application for a web-service client. This will run on Windows XP PC's. One of the fields returned by the web service is a DateTime field. The server returns a field in GMT ...
105
votes
7answers
128k views

Equivalent of DateTime.Now in Java?

How do I get the current date in Java? In C# it is DateTime.Now.
105
votes
4answers
42k views

java.util.Date vs java.sql.Date

java.util.Date vs java.sql.Date: when to use which and why?
105
votes
7answers
53k views

How to parse ISO formatted date in python?

I need to parse strings like "2008-09-03T20:56:35.450686Z" into python's datetime type. I have found only strptime in python 2.5 std lib, but it is not so convenient. What is the best way to do ...
101
votes
1answer
13k views

In Ruby on Rails, what's the difference between DateTime, Timestamp, Time and Date?

In my experience, getting dates/times right when programming is always fraught with danger and difficulity. Ruby and Rails have always eluded me on this one, if only due to the overwhelming number ...
99
votes
6answers
70k views

How to convert UNIX timestamp to DateTime and vice versa?

As the title says really. There is this example code, but then it starts talking about millisecond / nanosecond problems. http://blogs.msdn.com/brada/archive/2004/03/20/93332.aspx Edit: This is ...
96
votes
10answers
58k views

Converting .NET DateTime to JSON [duplicate]

Possible Duplicate: How to format a JSON date? My webs service is returning a DateTime to a jQuery call. The service returns the data in this format: /Date(1245398693390)/ How can I ...
93
votes
11answers
72k views

Add days to DateTime using JavaScript

How to add days to current DateTime using JavaScript. Does JavaScript have a built in function like .Net AddDay?
91
votes
3answers
85k views

How to convert java.util.date to java.sql.date?

I am trying to use java.util.Date as input and then creating a query with it - so I need java.sql.Date. I was surprised to find that it couldn't do the conversion implicitly or explicitly - but I ...
89
votes
6answers
20k views

Using SQL Server 2008 and SQL Server 2005 and date time

I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error. The version of SQL Server ...
86
votes
9answers
209k views

How can I convert string to datetime with format specification in JavaScript?

How can I convert a string to a date time object in javascript by specifying a format string? I am looking for something like: var dateTime = convertToDateTime("23.11.2009 12:34:56", "dd.MM.yyyy ...
80
votes
13answers
108k views

How can I truncate a datetime in SQL Server?

What's the best way to truncate a datetime value (as to remove hours minutes and seconds) in SQL Server 2008? For example: declare @SomeDate datetime = '2009-05-28 16:30:22' select ...
80
votes
7answers
46k views

Converting unix timestamp string to readable date in Python

I have a string representing a unix timestamp (i.e. "1284101485") in Python, and I'd like to convert it to a readable date. When I use time.strftime, I get a TypeError. >>>import time ...
79
votes
3answers
3k views

How can we develop coding practices designed to protect against leap year bugs?

Microsoft has just announced that a software error in calculating dates (over leap year) caused a major outage in Windows Azure last week. Was it really a simple error in judgement working around ...
78
votes
4answers
11k views

What's the difference between DateTime and Time in Ruby?

And what factors would cause me to choose one or the other?
75
votes
9answers
63k views

DateTime “null” value

I've been searching a lot but couldn't find a solution. How do you deal with a DateTime that should be able to contain an uninitialized value (equivalent to null)? I have a class which might have a ...
73
votes
6answers
74k views

Convert to/from DateTime and Time in Ruby

How do you convert between a DateTime and a Time object in Ruby?
67
votes
6answers
56k views

What is the best way to convert seconds into (Hour:Minutes:Seconds:Milliseconds) time?

What is the best way to convert seconds into (Hour:Minutes:Seconds:Milliseconds) time? Let's say I have 80 seconds, are there any specialized classes/techniques in .NET that would allow me to convert ...
66
votes
24answers
61k views

How do I calculate the date six months from the current date using the datetime Python module?

I am using the datetime Python module. I am looking to calculate the date 6 months from the current date. Could someone give me a little help doing this? The reason I want to generate a date 6 ...
66
votes
4answers
15k views

How do I convert datetime to date (in python)?

How do I convert a datetime.datetime object (e.g. the return value of datetime.datetime.now()) to a datetime.date object in Python?
60
votes
2answers
29k views

How can I subtract a day from a python date?

I have a python datetime.datetime object. What is the best way to subtract one day?
60
votes
8answers
6k views

What's a good way to overwrite DateTime.Now during testing?

I've got some (C#) code that relies on today's date to correctly calculate things in the future. If I use today's date in the testing, I have to repeat the calculation in the test, which doesn't feel ...
59
votes
6answers
36k views

Python - easy way to add N seconds to a datetime.time?

Given a datetime.time value in Python, is there a standard way to add an integer number of seconds to it, so that 11:34:59 + 3 = 11:35:02, for example? These obvious ideas don't work: >>> ...
58
votes
8answers
21k views

How to truncate milliseconds off of a .NET DateTime

I'm trying to compare a time stamp from an incoming request to a database stored value. SQL Server of course keeps some precision of milliseconds on the time, and when read into a .NET DateTime, it ...
58
votes
4answers
89k views

Simple conversion between java.util.Date and XMLGregorianCalendar

I'm looking for a simple method of converting between java.util.Date and javax.xml.datatype.XMLGregorianCalendar in both directions. Here is the code that I'm using now: import ...
57
votes
5answers
11k views

What's the optimum way of storing an NSDate in NSUserDefaults?

There's two ways of storing an NSDate in NSUserDefaults that I've come across. Option 1 - setObject:forKey: // Set NSDate *myDate = [NSDate date]; [[NSUserDefaults standardUserDefaults] ...
57
votes
14answers
52k views

How do I convert local time to UTC in Python?

How do I convert a datetime string in local time to a string in UTC time? I'm sure I've done this before, but can't find it and SO will hopefully help me (and others) do that in future. ...
56
votes
2answers
42k views

How do I compare two DateTime objects in PHP 5.2.8?

This seems like something that should be pretty straight forward, but I have been stuck page faulting this problem for a while now, so here goes. Having a look on the PHP documentation , the ...
54
votes
6answers
62k views

How to print date in a regular format in Python?

I'm only just starting out with python so I'm still pretty clueless. What I'm trying to do is to get the date from the pc and adding it to a list. This is my code: import datetime today = ...
53
votes
8answers
29k views

How do I output an ISO-8601 formatted string in Javascript?

I have a date object from which I'd like to render an HTML snippet like <abbr title="2010-04-02T14:12:07">A couple days ago</abbr>. I have the "relative time in words" portion from another ...
52
votes
2answers
17k views

How to convert a unix timestamp (seconds since epoch) to Ruby DateTime?

I can't believe I havent found a simple answer to this; How to convert a unix timestamp (seconds since epoch) to Ruby DateTime?
48
votes
8answers
19k views

Iterating through a range of dates in Python

I have the following code to do this, but how can I do it better? Right now I think it's better than nested loops, but it starts to get Perl-one-linerish when you have a generator in a list ...
47
votes
12answers
141k views

How do you get the current time of day?

How do you get the current time (not date AND time)? Example: 5:42:12 PM

1 2 3 4 5 250