Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing for the iPhone and am looking for a good Cocoa/Objective-C library for working with SQLite. I don't want to use the standard procedural SQLite C API. I see options at sqlite.org under the Objective-C section, but am not sure which is the best in terms of library API design, stability, and functionality. I'd like to use something that's actively being developed and hopefully will be around for a while. Anyone have suggestions based on experience using one?

Thanks

share|improve this question
1  
Core. Data. Every. Time. – Roger Nolan Jun 29 '11 at 15:44

closed as not a real question by casperOne Jan 26 '12 at 20:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

8 Answers

up vote 30 down vote accepted

I personally use FMDB, and the last update to it was yesterday.

share|improve this answer
1  
a link would be good :) – Toby Allen Jul 26 '10 at 17:06
1  
github.com/ccgus/fmdb – Justin Tanner Jan 25 '11 at 20:16

I'm also a fan of FMDatabase, although I've had to customize my own version of it. My apps use a layer around it I wrote called ArchDBObject that transparently converts objects to and from a database representation; I'm thinking about releasing it in some form, but I haven't really decided how yet.

In any case, FMDatabase can be had at http://code.google.com/p/flycode/source/browse/trunk/fmdb/.

share|improve this answer
1  
+1 for giving a link – nevan king Feb 2 '10 at 7:14
2  
Project has moved to here: github.com/ccgus/fmdb – Steph Thirion Apr 22 '11 at 20:30

The simplest I've found is this one https://github.com/misato/SQLiteManager4iOS

SQLiteManager by Ester Sanchez.

Using it is basically like this:

NSArray *results = [dbManager getRowsForQuery:[NSString stringWithFormat:@"SELECT * FROM table WHERE id = %d", anInteger]];

Results is an array containing dictionarys. Each dictionary is a returned row where the keys are the names of each column in the table.

share|improve this answer
Ok, well this looks amazing. Why aren't there any votes? Hmmm, FMDB vs SQLiteManager4iOS ... – conor Jun 28 '11 at 16:56
No idea, I don't think this one is widely used. I've tried them both and I definitely prefer the latter. – Accatyyc Jul 5 '11 at 11:23

FMDB is nice because it's the lightest way to not have to deal with the C calls and type conversions, while still giving you full access to the SQL.

The thing I generally do not like about object-relational wrappers is that you get too distant from the SQL being generated and that's when performance can start to suffer.

share|improve this answer

Edit: None of this is true:

We use sqlitepersistentobjects. It's very good at hiding all of the mechanics of interfacing with SQL away from your Objective-C code. There are some defects but it is under active development by Jeff Lamarche, the author of the excellent Beginning iPhone Development.

Google code hosts to source.

The downside would be that it is sometimes too clever and if you hit a problem, debugging/integrating is difficult.

We dropped SQLite Persistent Objects in favour of CoreData as soon as CoreData was available. If anyone is looking at this question, I would strongly suggest CoreData as the only reasonable way to go.

share|improve this answer
Looks like it's maintained independently here as well: github.com/samuraisam/SQLitePersistentObjects . See the contributor's blog post: ssutch.org/sqlitepersistentobjects – Steph Thirion Apr 22 '11 at 20:28
Side note, I haven't started using it, but it looks elegant and simple. And I appreciate that unlike FMDB it's mostly documented (in the blog post announcement). – Steph Thirion Apr 22 '11 at 20:37

I spent the last few hours looking at the options -- haven't been in production with any of these yet, so YMMV.

The lightest weight wrapper I found was here:

http://th30z.netsons.org/2008/11/objective-c-sqlite-wrapper/

I don't know if it has an official name. It's just 1 class, and it abstracts the nastiness of the SQLite api, while leaving the value of working directly with SQL. The learning curve is 5 minutes, assuming you know SQL already. Since it's so small, I can imagine it would be easy to fix anything that might go wrong with it.

share|improve this answer
2  
The URL no longer seems to work... – Oliver Mason Nov 26 '11 at 15:57

If you want, you could also have a look at the following repository that provides a set of classes that can be used to create SQL statements and provides a simple way to handle a SQLite database connection. It is located at https://github.com/ziminji/objective-c-sql-query-builder

share|improve this answer

I have a simple ORM on top of FDBM here http://code.google.com/p/chibiorm/.

With it, you can use raw SQL when you wish, return any SQL as a dict list, or use the nice OO style.

share|improve this answer

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