C chhoda macrumors 6502 Original poster Oct 27, 2009 #1 I am given with a db schema which contains datetime field in table. I dont see sqlite function to access. is it to be accessed through sqlite3_column_text ? --CH
I am given with a db schema which contains datetime field in table. I dont see sqlite function to access. is it to be accessed through sqlite3_column_text ? --CH
PhoneyDeveloper macrumors 68040 Oct 27, 2009 #2 To sqlite everything is text. You could use unix time and save seconds as a double. You could see what sqlite.org has to say.
To sqlite everything is text. You could use unix time and save seconds as a double. You could see what sqlite.org has to say.