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)

47
votes
8answers
132k views

NOW() function in PHP

Is there any PHP function that returns time format as the MySQL fuction NOW() I know how to do it using date() .. but I am asking if there is a function only for this. e.g. "2009-12-01 00:00:00"
47
votes
12answers
142k 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
46
votes
5answers
37k views

Adding hours to Javascript Date object?

It amazes me that Javascript's Date object does not implement an add function of any kind. I simply want a function that can do this: var now = Date.now(); var fourHoursLater = now.addHours(4); ...
45
votes
8answers
51k views

How to combine date from one field with time from another field - MS SQL Server

In an extract I am dealing with, I have 2 datetime columns. One column stores the dates and another the times as shown. How can I query the table to combine these two fields into 1 column of type ...
45
votes
3answers
19k views

Python: Initialize a datetime object with seconds since epoch

The time module can be initialized using seconds since epoch: >>> import time >>> t1=time.gmtime(1284286794) >>> t1 time.struct_time(tm_year=2010, tm_mon=9, tm_mday=12, ...
44
votes
8answers
40k views

Python format timedelta to string

I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object. Here's what I'm trying to do. I have a list of objects and one of the members of the class of the object ...
43
votes
5answers
18k views

How do I translate a ISO 8601 datetime string into a Python datetime object?

I'm getting a datetime string in a format like "2009-05-28T16:15:00" (this is ISO 8601, I believe) one hack-ish option seems to be to parse the string using time.strptime and passing the first 6 ...
42
votes
7answers
24k views

How do I loop through a date range?

I'm not even sure how to do this without using some horrible for loop/counter type solution. Here's the problem: I'm given two dates, a start date and an end date and on a specified interval I need ...
41
votes
11answers
14k views

Is there a predefined enumeration for Month in the .NET library?

I'm looking to see if there is an official enumeration for months in the .net framework. It seems possible to me that there is one, because of how common the use of month is, and because there are ...
41
votes
8answers
59k views

Get integer value of the current year in Java

I need to determine the current year in Java as an integer. I would like to be able to use this value as a counter that I can, for example, use to run from now until a specified year in the past (i.e. ...
41
votes
4answers
18k views

Random date in C#

I'm looking for some succinct, modern C# code to generate a random date between Jan 1 1995 and the current date. I'm thinking some solution that utilizes Enumerable.Range somehow may make this more ...
41
votes
6answers
23k views

MVC DateTime binding with incorrect date format

Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of public ActionResult DoSomething(DateTime startDate) { ... } This successfully converts a ...
41
votes
6answers
11k views

What is AM/PM called?

I know what AM/PM stand for (ante-meridiem and post-meridiem), but what are they called? For example, if I want a user to be able to select a time from drop down boxes with values 1-12, 00-60, and ...
41
votes
7answers
39k views

Best JavaScript Date Parser & Formatter? [closed]

Since I've started to use jQuery, I have been doing a lot more JavaScript development. I have the need to parse different date formats and then to display them into another format. Do you know of ...
40
votes
5answers
90k views

Get Day of Week in SQL 2005/2008

Say I have a date 01/01/2009, I want to find out what day it was e.g. Monday, Tuesday, etc... Is there a built in function for this in Sql2005/2008? Or do I need to use an auxiliary table?
39
votes
6answers
14k views

StringFormat Localization problem

In WPF 3.5SP1 i use the last feature StringFormat in DataBindings: <TextBlock Text="{Binding Path=Model.SelectedNoteBook.OriginalDate, StringFormat='f'}" ...
39
votes
4answers
15k views

What's the BEST way to remove the time portion of a datetime value (SQL Server)?

Here's what I use: SELECT CAST(FLOOR(CAST(getdate() as FLOAT)) as DATETIME) I'm thinking there may be a better/more elegant way. Requirements: It has to be as fast as possible (the less casting ...
39
votes
9answers
20k views

How can I filter a date of a DateTimeField in Django?

I am trying to filter a DateTimeField comparing with a date. I mean: MyObject.objects.filter(datetime_attr=datetime.date(2009,8,22)) I get an empty queryset list as an answer because (I think) I am ...
39
votes
3answers
51k views

Get current date/time in seconds?

Can anyone inform me of the best way to get the current date/time in seconds in javascript?
39
votes
6answers
16k views

How to Check if an NSDate occurs between two other NSDates

I am trying to figure out whether or not the current date falls within a date range using NSDate. For example, you can get the current date/time using NSDate: NSDate rightNow = [NSDate date]; I ...
38
votes
9answers
44k views

Get the previous month's first and last day dates in c#

I can't think of an easy one or two liner that would get the previous months first day and last day. I am LINQ-ifying a survey web app, and they squeezed a new requirement in. The survey must ...
38
votes
2answers
20k views

Convert from java.util.date to JodaTime

I want to convert a java.util.Date to JodaTime so as to carry out subtractions between dates. Is there a good concise way to convert from Date to JodaTime? Thanks! Kurt
38
votes
9answers
3k views

Get the Olson TZ name for the local timezone?

How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call? This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
38
votes
7answers
1k views

Why is DateTime.Now a property and not a method?

After reading this blog entry : http://wekeroad.com/post/4069048840/when-should-a-method-be-a-property, I'm wondering why Microsoft choose in C# : DateTime aDt = DateTime.Now; instead of DateTime ...
37
votes
8answers
24k views

PHP last day of the month

How can I get the last day of the month in PHP? Given: $a_date = "2009-11-23" I want 2009-11-30; and given $a_date = "2009-12-23" I want 2009-12-31.
37
votes
15answers
18k views

Difference in months

In C#/.NET TimeSpan has TotalDays, TotalMinutes, etc. but I can't figure out a formula for total months difference. Variable days per month and leap years keep throwing me off. How can I get ...
36
votes
5answers
27k views

SqlDateTime.MinValue != DateTime.MinValue, why?

I wonder, why SqlDateTime.MinValue is not the same as DateTime.MinValue?
36
votes
13answers
18k views

What is the best way to parse a time into a Date object from user input in Javascript?

I am working on a form widget for users to enter a time of day into a text input (for a calendar application). Using JavaScript (we are using jQuery FWIW), I want to find the best way to parse the ...
36
votes
4answers
42k views

Creating a DateTime in a specific Time Zone in c# fx 3.5

I'm trying to create a unit test to test the case for when the timezone changes on a machine because it has been incorrectly set and then corrected. In the test I need to be able to create DateTime ...
36
votes
2answers
10k views

How to make an unaware datetime timezone aware in python

What I need to do I have a timezone-unaware datetime object, to which I need to add a time zone in order to be able to compare it with other timezone-aware datetime objects. I do not want to convert ...
35
votes
7answers
37k views

How do I convert ticks to minutes?

I have a ticks value of 28000000000 which should be 480 minutes but how can I be sure? How do I convert a ticks value to minutes?
35
votes
7answers
34k views

How do I use DateTime.TryParse with a Nullable<DateTime>?

I want to use the DateTime.TryParse method to get the datetime value of a string into a Nullable. But when I try this: DateTime? d; bool success = DateTime.TryParse("some date text", out ...
35
votes
7answers
15k views

python: getting millis since epoch from datetime

I have a Python datetime object that I want to convert to milliseconds since epoch. How do I do this?
34
votes
12answers
32k views

How to remove time portion of date in C# in DateTime object only?

I need to remove time portion of date time or probably have the date in following format in object form not in the form of string. 06/26/2009 00:00:00:000 I can not use any string conversion ...
34
votes
6answers
14k views

How to get week number in Python?

How to find out what week number is this year on June 16th (wk24) with Python?
34
votes
8answers
30k views

JPA/Hibernate store date in UTC time zone

How can I configure JPA/Hibernate to store a date/time in the database as UTC (GMT) time zone? Consider this annotated JPA entity: public class Event { @Id public int id; ...
33
votes
6answers
32k views

Java: comparing two Dates to see if they are in the same day

I need to compare two Dates (e.g. date1 and date2) and come up with a boolean sameDay which is true of the two Dates share the same day, and false if they are not. How can I do this? There seems to ...
33
votes
9answers
35k views

How to select records from last 24 hours using SQL?

What where clause should be use to get records from the last 24 hours?
33
votes
6answers
7k views

DateTime vs DateTimeOffSet

Currently we have a standard way of dealing with .net DateTimes in a TimeZone aware way: Whenever we produce a DataTime we do it in UTC (e.g. using DateTime.UtcNow), and whenever we display one, we ...
33
votes
1answer
10k views

Java equivalent to C#'s TimeSpan

Does Java have a data type that represents a period of time eg 34 seconds, 5 minutes etc. I've seen a few implementations of a TimeSpan that cover a Time period like from the 10th of December to the ...
32
votes
6answers
22k views

Django auto_now and auto_now_add

For Django 1.1. I have this in my models.py: class User(models.Model): created = models.DateTimeField(auto_now_add=True) modified = models.DateTimeField(auto_now=True) When updating a row ...
32
votes
6answers
33k views

Rails 3 default datetime format without UTC

I'm creating a new Rails 3 app, and in it I use datetime for a couple of fields, however every datetime field standard has UTC behind it (in a view), like: 2010-10-10 16:19:00 UTC How do I get rid ...
32
votes
2answers
19k views

Rails: convert UTC DateTime to another time zone

In Ruby/Rails, how do I convert a UTC DateTime to another time zone?
32
votes
9answers
96k views

String was not recognized as a valid DateTime “ format dd/MM/yyyy”

I am trying to convert my string formated value to date type with format dd/MM/yyyy. this.Text="22/11/2009"; DateTime date = DateTime.Parse(this.Text); What is the problem ? It has a ...
31
votes
2answers
17k views

jaxb unmarshal timestamp

I cannot get JAXB to unmarshal a timestamp in a Resteasy JAX-RS server application. My class looks like this: @XmlAccessorType(XmlAccessType.NONE) @XmlRootElement(name = "foo") public final class ...
31
votes
8answers
6k views

Linq to SQL DateTime values are local (Kind=Unspecified) - How do I make it UTC?

Isn't there a (simple) way to tell Linq To SQL classes that a particular DateTime property should be considered as UTC (i.e. having the Kind property of the DateTime type to be Utc by default), or is ...
30
votes
7answers
14k views

Formatting “yesterday's” date in python

Python I need to find "yesterday's" date in this format: MMDDYY So for instance, today's date would be represented like this: 111009 I can do this for today easy of course but having trouble doing ...
30
votes
4answers
38k views

What is the correct format to use for Date/Time in an XML file (.NET)

What format do I use for Date/Time when writing to an XML file using .NET? Do I simply use DateTime.ToString(), or do I have to use a specific format?
30
votes
3answers
9k views

Stopwatch vs. using System.DateTime.Now for timing events [duplicate]

I wanted to track the performance of my code so I stored the start and end time using System.DateTime.Now. I took the difference between the two as the time my code to execute. I noticed though that ...
29
votes
6answers
82k views

Validate a DateTime in C#

I doubt I am the only one who has come up with this solution, but if you have a better one please post it here. I simply want to leave this question here so I and others can search it later. I ...

1 2 3 4 5 251