vote up 0 vote down star

I have a sqlite3 table that I'm trying to map to an object in objective-C. One attribute of the table is 'completed_at' which is stored as a DATETIME.

I want to create a property on my objective-C class (which inherits from NSObject) that will map well to the 'completed_at' attribute.

Objective-C has an NSDate type but I'm not sure if that will map directly?

flag

50% accept rate

2 Answers

vote up 2 vote down

This came up a couple of weeks ago:

Persisting Dates to SQLite3 in an iPhone Application

link|flag
vote up 3 vote down

I have zero experience with Objective-C, but I found Apple's NSDate Class Reference with a google search. With the information provided on the linked page you should be able to figure out how to manipulate 32-bit epoch times in Objective-C, and this would work well in SQLite. I would probably create the completed_at column as type INTEGER for 32-bit times.

SQLite really prefers Julian dates, which are floats. I haven't found any documentation explaining how one might coerce the NSDate class into working with Julians.

timeIntervalSince1970 looks very interesting.

link|flag
timeIntervalSince1970 works for me – amrox Nov 19 '08 at 18:59
Indeed, this is the correct mapping but be aware that SQLite does not impose a restriction on the types that it will hold but uses types merely as suggestions. – wisequark Nov 19 '08 at 22:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.