"wanting a simple overview on how to connect to a sqlite database in cocoa/objective-c" Code Answer

4

check out the supremely awesome fmdb. it's an objective-c wrapper around the c sqlite api and makes it really really easy to deal with sqlite databases in cocoa.

oh, and it comes with some documentation and the sample code is pretty easy to understand and is decently commented. chances are that 99% of anything you'd want to do with a sqlite database are demonstrated in the example.

in my opinion, if you use anything else to access a sqlite database (that's not a coredata store), you're doing it wrong.

By CZoellner on May 21 2022

Answers related to “wanting a simple overview on how to connect to a sqlite database in cocoa/objective-c”

Only authorized users can answer the Search term. Please sign in first, or register a free account.