0
votes
4answers
28 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
35 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
2answers
16 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
4answers
44 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 …
2
votes
2answers
61 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 …
2
votes
2answers
46 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 …
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 …
0
votes
3answers
37 views
what is the correct way to format a date time when building up a SQL string in code to insert into 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?
1
vote
1answer
117 views
How to format DateTime difference as “X years, Y months, Z days, W hours…”?
Yep, to my disappointment i noticed that there is no real timespan object, if you get a timespan, and do a .years or .months you'll get nothing, you'll only get .days and lower because a timeSpan …
0
votes
1answer
13 views
Is there any other time service than system time that we can make use?
I am developing a desktop app and it have an trial period after which application will get expire. Currently I am using system time. Since user can easily change it, I thought its not a good way to …
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 …
54
votes
24answers
12k views
How do I calculate someone’s age in C#?
Given a DateTime representing their birthday, how do I calculate someone's age?
3
votes
4answers
148 views
Efficient algorithm for determining if a date is in DST
I'm looking for a better than O(n) algorithm to determine if a date in the future will have daylight savings time applied (and how much). Given a year, month, day, hour, minute and time zone (and a …
7
votes
4answers
164 views
C# : How to convert string to DateTime, where the string can have any of the standard datetime format …
I had posted a question on DateTime to String conversion, I got many satisfying answers for that .. so I thank StackOverflow very much .. Here is one more problem of String manupulation, I am stuck …
0
votes
1answer
26 views
handling BC dates in Ruby on Rails
Hello,
I'm planning to make an application that needs to store dates way before 1970. Maybe even BC dates. Do you think I should store and handle that manually or can I use the Date/Time classes in …
