Google toolbox for Mac http://code.google.com/p/google-toolbox-for-mac/ also includes a nice little sqlite wrapper, in Foundation/GTMSQLite.h
. It isn't included in the provided iphone .xcodeproj but it does compile if you add it and its (minor) dependencies to an iphone project. Two classes: a db handle, and a prepared statement/resultset, with the expected methods on each.
Approach Core Data with caution: it is powerful, but confusing, and understanding O-R frameworks like Hibernate is a huge help. Use it if you have a complicated domain model already designed, and want some help persisting it to disk and keeping it consistent. If your data is already designed in terms of tables and joins, and/or your backing store needs to be portable to the non-Cocoa world, a suitably wrapped SQLite is still an excellent choice.