Skip to content

Instantly share code, notes, and snippets.

@ghiboz
Created September 21, 2011 13:42
Show Gist options
  • Save ghiboz/1232051 to your computer and use it in GitHub Desktop.
Save ghiboz/1232051 to your computer and use it in GitHub Desktop.
store nsdate into db
// salvo su db
sqlite3_bind_double(updateStatement, 5, [[person birthdate] timeIntervalSince1970]);
// leggo da db
person.birthdate = [NSDate dateWithTimeIntervalSince1970:sqlite3_column_double(selectStatement, 5)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment