0
votes
1answer
31 views
How to convert WMI DateTime to standard DateTime?
I'm trying to read the install date from WMI (Win32_OperatingSystem.InstallDate). The return value looks like this: 20091020221246.000000+180. How can I get a valid Date?
2
votes
5answers
51 views
Convert a date to string in Javascript
I'm looking for a way to convert a Javascript Date object to a string. I'm converting my site from Ruby to server side Javascript, and I'm looking for something analogous to strftime in Ruby, C, and …
0
votes
4answers
30 views
how to test date and datetime with mysql
hi guys, My table is using a datetime (YYYY-MM-DD HH:MM:SS) and i need to display today's entries.
my code is only :
SELECT *
FROM table
WHERE date = '$date'
ORDER BY score DESC
…
0
votes
4answers
37 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:
…
0
votes
3answers
39 views
what is the correct way to format a datetime in SQL server datetime field
I have a dateTime object in C# and i want to do an insert into SQL Server datetime field. What is the correct format for this?
0
votes
2answers
18 views
timeIntervalSinceDate problem
Hi guys - last resort this as I cannot for the life of me work it out!
I am setting a date when my app is closed (using applicationWillTerminate) in user defaults
NSUserDefaults *defaults = …
2
votes
2answers
51 views
Any utility in the JDK to format a timezone into a specific string
I will be retrieving values from the range -12 to +12 & I need to convert it to a specific timezone format string.
e.g.
-3 becomes -03:00
0 becomes Z
4 becomes +04:00
Is there any readymade …
2
votes
2answers
63 views
How can I determine if iPhone is set for 12 hour or 24 hour time display?
I thought I saw something answering this on SO recently but now I can't find it. Here is the code I am using now to determine if settings are for 24 hour time display. It works for me in the US, but …
0
votes
2answers
14 views
MySQL auto-store datetime for each row
Lately I've been doing quite a few projects that require the use of back-end, including MySQL.
However I'm quite sick of adding the columns dt_created and dt_modified (which are date time stamps for …
2
votes
6answers
67 views
PHP function to get the date format?
I know how to use date format strings, to turn date('Y/m/d H:i:s'); into 2009/12/18 11:37:45.
I would like a function that can do the opposite - look at a formatted date then return the format. Is …
0
votes
4answers
90 views
C# datetime format that includes date/month/year and not day
Another silly question, but I wanted to use a standard date format that displays date, month and year in the standard regional settings of the pc. However I could only find "D" which lists day along …
0
votes
2answers
64 views
C# DateTime.ToString with data format or pattern
Hi,
i am trying to understand how DateTime.ToString(Date pattern) work in .net framework, C#.
I changed my computer to have a short Date format like this yyyy.MM.dd.
Following is what I notice
…
1
vote
3answers
33 views
How to iterate, by month, between two specified dates
I have a website that was launched a few months ago. I would like to write some code that will look through every month, since launch, and grab metrics for that month.
My question is: What is the …
0
votes
3answers
33 views
Read a formatted date in Python 2.3?
I had never worked with the datetime module in Python 2.3, and I have a very silly problem. I need to read a date in the format
'10-JUL-2010'
then subtract a day (I would use timedelta), and …
0
votes
5answers
41 views
How do I extract just the date from a SQL datetime value in SSIS?
How do I convert a datetime to just a date in SSIS?
I'm trying to perform an aggregate query which will group by a particular date. In order to do that, I'm trying to extract just the date portion …
