Using the windows shell when i try to query the mmssms.db like
sqlite> select address, date, body from sms;
it gives me the date in some weird format, how can i get it in proper Date format. Screen shot is attached.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a date(timestring, modifier, modifier, …) function for sqlite, see here – http://www.sqlite.org/lang_datefunc.html
or the strftime(format, timestring) looks like it would work better
so something like:
sqlite> select address, strftime(‘%Y-%m-%d %H:%M:%S’, date), body from sms;