On 30 Apr 2010, at 6:33pm, Hal Faulkner wrote: > I want to program using Cocoa/Objective-C with Mac OSX 10.6 Xcode & Interface > Builder to create and use persistent SQLite3 database. > > I have failed in my search for code examples or tutorials which show the use > of objects to use SQLite. I have run out of web search word combinations.
I've seen two or three 'bridge' or 'shim' libraries that present SQLite as Objective-C objects. Unfortunately the one I liked best was from www.blackholemedia.com/code and is no longer available. Dustin Mierau was the author. Google for 'sqlite3 objective-C' or perhaps add the word 'wrapper'. There is no real problem with using SQLite3 with Xcode and Objective-C. It just works. I've done it both using calls to the SQLite library installed in OS X and by using the 'amalgamation' distribution to use a newer version of SQLite than the one that comes with OS X. Worked first time both ways. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

