DateTime objects in many programming languages describe an instant in time, expressed as a date and time of day.
18
votes
2answers
2k views
DateTime - Strange daylight savings behaviour
My local timezone is (UTC+10:00) Canberra, Melbourne, Sydney
Sat 31-Mar-2012 15:59 UTC = Sun 01-Apr-2012 02:59 +11:00
Sat 31-Mar-2012 16:00 UTC = Sun 01-Apr-2012 02:00 +10:00
Daylight savings ...
18
votes
8answers
506 views
Is there a standard way of representing uncertain dates in C#?
I'm playing around with some historical data wherein some dates I know accurately (i.e. dd/mm/yyyy) whilst others are just yyyy and others are yyyy? (i.e. the year is uncertain). I've even come across ...
17
votes
7answers
13k views
Is there a better way in C# to round a DateTime to the nearest 5 seconds?
I want to round a DateTime to the nearest 5 seconds. This is the way I'm currently doing it but I was wondering if there was a better or more concise way?
DateTime now = DateTime.Now;
int second = ...
17
votes
6answers
44k views
Java Timestamp - How can I create a Timestamp with the date 23/09/2007?
How can I create a Timestamp with the date 23/09/2007?
17
votes
11answers
43k views
How do I perform Date Comparison in EF query?
Please help.
I am trying to figure out how to use DATE or DATETIME for comparison in a linq query.
Example:
If I wanted all Employee names for those who started before today, I would do something ...
17
votes
4answers
32k views
How can I parse dates and convert time zones in Perl?
I've used the localtime function in Perl to get the current date and time but need to parse in existing dates. I have a GMT date in the following format: "20090103 12:00" I'd like to parse it into a ...
17
votes
7answers
38k views
Convert one date format into another in PHP
Is there a simple way to convert one date format into another date format in PHP?
I have this:
$old_date = date('y-m-d-h-i-s'); // works
$middle = strtotime($old_date); // ...
17
votes
2answers
9k views
Getting number of days in a month
I have a comboBox with all the months in it.
What I need to know is the number of days in that month.
var month = cmbMonth.SelectedIndex + 1;
DateTime date = Convert.ToDateTime(month);
So if I ...
17
votes
5answers
38k views
How do I insert datetime value into a SQLite database?
I am trying to insert a datetime value into a SQLite database. It seems to be sucsessful but when I try to retrieve the value there is an error:
<Unable to read data>
The SQL statements are:
...
17
votes
4answers
7k views
Calculate total seconds in PHP DateInterval
What is the best way to calculate the total number of seconds between two dates? So far, I've tried something along the lines of:
$delta = $date->diff(new DateTime('now'));
$seconds = ...
17
votes
3answers
771 views
Why does an hour get added on to java.util.Date for dates before Nov 1 1971?
The following code appears to demonstrate a bug in java.util.Date whereby an hour gets added on if the local clock is set to GMT with DST adjustment on and the time is before Nov 1 1971. My first ...
17
votes
4answers
19k views
How to display a date as iso 8601 format with PHP
I'm trying to display a datetime from my MySQL database as an iso 8601 formated string with PHP but it's coming out wrong.
17 Oct 2008 is coming out as: 1969-12-31T18:33:28-06:00 which is clearly not ...
17
votes
4answers
19k views
Inserting a python datetime.datetime object into mysql
I have a date column in a mysql table. I want to insert a datetime.datetime() object into this column. What should i be using in the execute statement?
I have tried:
now = datetime.datetime(2009,5,5)
...
17
votes
4answers
6k views
How to parse dates with -0400 timezone string in python?
I have a date string of the form '2009/05/13 19:19:30 -0400'. It seems that previous versions of python may have supported a %z format tag in strptime for the trailing timezone specification, but ...
17
votes
7answers
583 views
Parsing a string for dates in PHP
Given an arbitrary string, for example ("I'm going to play croquet next Friday" or "Gadzooks, is it 17th June already?"), how would you go about extracting the dates from there?
If this is looking ...
17
votes
6answers
3k views
How to check is timezone identifier valid from code?
I'll try to explain what's the problem here.
According to list of supported timezones from PHP manual, I can see all valid TZ identifiers in PHP.
My first question is how to get that list from code ...
17
votes
2answers
5k 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 ...
17
votes
7answers
10k views
How to display DateTime with an abbreviated Time Zone?
I am aware of the System.TimeZone class as well as the many uses of the DateTime.ToString() method. What I haven't been able to find is a way to convert a DateTime to a string that, in addition to ...
16
votes
5answers
49k views
how to convert string into time format and add two hours
I have the following requirement in the project.
I have a input field by name startDate and user enters in the format YYYY-MM-DD HH:MM:SS.
I need to add two hours for the user input in the startDate ...
16
votes
8answers
7k views
How do you iterate through every day of the year?
Given a start date of 1/1/2009 and an end date of 12/31/2009, how can I iterate through each date and retrieve a DateTime value using c#?
Thanks!
16
votes
5answers
7k views
python time to age part 2, timezones
Following on from my previous question: http://stackoverflow.com/questions/508727/python-time-to-age
I have now come across a problem regarding the timezone, turns out that its not always going to be ...
16
votes
6answers
12k views
PHP: Return all dates between two dates in an array
Expected Input:
getDatesFromRange( '2010-10-01', '2010-10-05' );
Expected Output:
Array( '2010-10-01', '2010-10-02', '2010-10-03', '2010-10-04', '2010-10-05' )
16
votes
8answers
11k views
Java System.currentTimeMillis() equivalent in C#
What is the equivalent of Java's System.currentTimeMillis() in C#?
16
votes
11answers
29k views
How do I convert a date/time to epoch time (aka unix time — seconds since 1970) in Perl?
Given a date/time as an array of (year, month, day, hour, minute, second), how would you convert it to epoch time, i.e., the number of seconds since 1970-01-01 00:00:00 GMT?
Bonus question: If given ...
16
votes
10answers
802 views
Is TimeSpan unnecessary?
EDIT 2009-Nov-04
OK, so it's been a little while since I first posted this question. It seems to me that many of the initial responders failed to really get what I was saying--a common response was ...
16
votes
5answers
71k views
Showing Difference between two datetime values in hours
I am retrieving two date time values from the database. Once the value is retrieved, I need the difference between the two values.
For that, I create a timespan variable to store the difference of the ...
16
votes
3answers
10k views
How to add 10 days to current time in rails?
I tried doing something like Time.now + 5.days but that doesn't work (even though I vaguely remember seeing (and being very impressed) with being able to do something like 2.years etc...). How do I ...
16
votes
4answers
4k views
How do you find the last day of the month? [duplicate]
Possible Duplicate:
How to get the last day of a month?
So far, I have this:
DateTime createDate = new DateTime(year, month, 1).AddMonths(1).AddDays(-1);
Is there a better way?
16
votes
5answers
6k views
How to iterate over a timespan after days, hours, weeks and months in Python?
How do I iterate over a timespan after days, hours, weeks or months?
Something like:
for date in foo(from_date, to_date, delta=HOURS):
print date
Where foo is a function, returning an ...
16
votes
4answers
17k views
Quickly getting to YYYY-mm-dd HH:MM:SS in Perl
When writing Perl scripts I frequently find the need to obtain the current time represented as a string formatted as YYYY-mm-dd HH:MM:SS (say 2009-11-29 14:28:29).
In doing this I find myself taking ...
16
votes
4answers
52k views
Add default value of datetime field in SQL Server to a timestamp
I've got a table that collects forms submitted from our website, but for some reason, when they created the table, they didn't put a timestamp in the table. I want it to enter the exact date and time ...
16
votes
5answers
4k views
How do I obtain the amount of days of a given month with Jodatime?
30 days hath September,
April, June and November,
All the rest have 31,
Excepting February alone
(And that has 28 days clear,
With 29 in each leap year).
Can I obtain this info ...
16
votes
2answers
8k views
Read datetime back from sqlite as a datetime in Python
I'm using the sqlite3 module in Python 2.6.4 to store a datetime in a SQLite database. Inserting it is very easy, because sqlite automatically converts the date to a string. The problem is, when ...
16
votes
4answers
4k views
How can I account for “AM” or “PM” with datetime.strptime?
Specifically I have code that simplifies to this:
from datetime import datetime
date_string = '2009-11-29 03:17 PM'
format = '%Y-%m-%d %H:%M %p'
my_date = datetime.strptime(date_string, format)
# ...
16
votes
2answers
23k views
Android get Current UTC time [duplicate]
What is the function to get the current UTC time. I have tried with System.getCurrentTime but i get the current the of the device.
Thanks
16
votes
4answers
14k views
strptime() equivalent on Windows?
Is there a good equivalent implementation of strptime() available for Windows? Unfortunately, this POSIX function does not appear to be available.
Open Group description of strptime - summary: it ...
16
votes
3answers
15k views
Approach to convert from org.joda.time.DateTime to java.util.Calendar
Anyone done this and can share? I see an option or two but want to know what others have accomplished.
16
votes
11answers
16k views
PHP DateTime microseconds always returns 0
this code always returns 0 in PHP 5.2.5 for microseconds:
<?php
$dt = new DateTime();
echo $dt->format("Y-m-d\TH:i:s.u") . "\n";
?>
Output:
[root@www1 ~]$ php date_test.php
...
16
votes
6answers
18k views
Set Default DateTime Format c#
Is there a way of setting or overriding the default DateTime format for an entire application. I am writing an app in C# .Net MVC 1.0 and use alot of generics and reflection. Would be much simpler ...
16
votes
3answers
847 views
PHP, MySQL and Time Zones
I am trying to integrate a timezone system in my app, i've really tried hard on avoiding making timezone-aware apps upto now - but its a mandatory requirement now so got no choice. TimeZones it just ...
16
votes
3answers
13k views
Comparing a time delta in python
I have a variable which is <type 'datetime.timedelta'> and I would like to compare it against certain values.
Lets say d produces this datetime.timedelta value 0:00:01.782000
I would like to ...
16
votes
2answers
2k views
How do I parse an HTTP date-string in Python?
Is there an easy way to parse HTTP date-strings in Python? According to the standard, there are several ways to format HTTP date strings; the method should be able to handle this.
In other words, I ...
16
votes
6answers
867 views
Parsing a Date Like “Wednesday 13th January 2010” with .NET
How can I convert the following strings to a System.DateTime object?
Wednesday 13th January 2010
Thursday 21st January 2010
Wednesday 3rd February 2010
Normally something like the following would ...
16
votes
2answers
508 views
What data structure is recommended for multiple calendars, dates and durations?
I have a requirement to store dates and durations arising from multiple different calendars. In particular I need to store dates that:
Span the change to Gregorian calendars in different countries ...
16
votes
3answers
4k views
Working with timezones and daylight savings time in Javascript
My single-page javascript app retrieves data in JSON format via REST calls. Dates come formatted using the UTC timezone in standard ISO8601 format, such as 2011-02-04T19:31:09Z.
When signing up for ...
15
votes
6answers
40k views
C# DateTime to “YYYYMMDDHHMMSS” format
I want to convert a C# DateTime to "YYYYMMDDHHMMSS" format. But I don't find a built in method to get this format? Any comments?
15
votes
7answers
16k views
The first day of the current month in php using date_modify as DateTime object
I can get Monday this week with:
$monday = date_create()->modify('this Monday');
I would like to get with the same ease the 1st of this month. How can I achieve that?
Thanks
15
votes
9answers
37k views
Python speed testing - Time Difference - milliseconds
What is the proper way to compare 2 times in Python in order to speed test a section of code? I tried reading the API docs. I'm not sure I understand the timedelta thing.
So far I have this code:
...
15
votes
8answers
19k views
How to add one day to a date?
I want to add one day to a particular date. How can I do that?
Date dt = new Date();
Now I want to add one day to this date.
15
votes
5answers
23k views
Converting milliseconds to a date (jQuery/JS)
I'm a bit of a rambler, but I'll try to keep this clear -
I'm bored, so I'm working on a "shoutbox", and I'm a little confused over one thing. I want to get the time that a message is entered, and I ...