Does anyone have an idea how to insert current date or bind the current date in sqlite for iphone app?
I have used this, to store a String:
sqlite3_bind_text( compiledStatement, 3, [Gjourney UTF8String], -1, SQLITE_TRANSIENT);
Is there any way to store the current date? In my datebase I make the Table hello
in which i have the column startdate
with a DATETIME
dataType.
Thanks