views:

17

answers:

1
+1  Q: 

Date description

How can I retrieve the dates of my events from my iPhone? I've just got an sqlitedb file left. Which was luckily stored on my pc. But how do I decipher which date and time it is?

Below is the table of my calendar...

http://img696.imageshack.us/i/calendersqlite.jpg/

A: 

SQLite knows different ways to encode a date. I would use a reader like this http://code.google.com/p/sqlite-manager/ which could help. Have a looke here http://www.sqlite.org/datatype3.html (1.2) maybe you can find whihc format is used in your case.

ManniAT
Thanks a lot for your help :)I think it's a unix timestamp (http://www.sqlite.org/lang_datefunc.html)But how does SQlite generate them?
Laslo
I'm not sure what you mean? And I guess the developer created the entry in his code - by using one of the date functions.
ManniAT