I am developing an iPhone application that persists data to a SQLite3 database.
For each row I persist I wish to include a \'created date\' and a \'last modified da
According to the docs there's no DATETIME data type! I use a real data type and convert an NSDate to a real using the timeIntervalSinceReferenceDate method.