Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using sqlite database in my application in which I am storing a Date and Time in milli-seconds. Now using Sqlite query I am trying to get this datetime from milliseconds to date in format "yyyy-MM-dd" but not getting a proper result.

I want to do this using a Sqlite query. Your help will be appreciated.

share|improve this question
1  
Can you post what code you have, and what it is returning? Try: stackoverflow.com/questions/4327483/… – RossC Aug 28 '12 at 11:41
2  
Didn't try with SimpleDateFormat class? – Praveen Aug 28 '12 at 11:43
1  
You can use Strftime() – Lalit Poptani Aug 28 '12 at 11:45
1  
@RossC Thanks a lot. Your link has helped me. The datetime method takes the argument in seconds and I had try to set the milliseconds. Thanks again :) – Dharmendra Aug 28 '12 at 12:01
show 2 more comments

2 Answers

up vote 7 down vote accepted

Datetime expects epochtime, which is in number of seconds while you are passing in milliseconds. Convert to seconds & apply.

SELECT datetime(1346142933585/1000, 'unixepoch');

Can verify this from this fiddle

share|improve this answer
1  
+1 I am sure that this will work. – MKJParekh Aug 29 '12 at 5:08
This is what I am looking for. Thanks a lot. Just one modification is that if we want a time in local timezone then Use this query SELECT datetime(1346142933585/1000, 'unixepoch', 'localtime'); – Dharmendra Aug 29 '12 at 5:20
3  
@Dharmendra yeah, I thought of mentioning that(you'll note I tested it -> sqlfiddle.com/#!5/d41d8/224), but I didn't mention it :-) – Sathya Aug 29 '12 at 5:24

Try:

select strftime("%Y-%m-%d", YOUR_DATE_COL) from .......
share|improve this answer
Getting wrong result.. I am getting proper format but not getting true value for example I have 1346142933585 milli which is equals to "2012-08-28" but I am getting "1698-19-20". – Dharmendra Aug 28 '12 at 11:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.