[ANNOUNCE] SQLite Persisted Objects for Cocoa

2008-08-26 Thread Jeff LaMarche
Greetings all. I recently created a project at Google Code that I wanted to bring to your attention. http://code.google.com/p/sqlitepersistentobjects/ The goal of this project is to create Objective-C data model objects that automagically know how to persist themselves to a SQLite

Re: [ANNOUNCE] SQLite Persisted Objects for Cocoa

2008-08-26 Thread Devon Ferns
Col. One question. What happens if you change your object's properties? Is the database automatically updated with the new fields? What about pointers to other custom classes? Would that work if those classes inherit from SQLitePersistentObject? I'll definitely have to check this out

Re: [ANNOUNCE] SQLite Persisted Objects for Cocoa

2008-08-26 Thread Phillip Jacobs
Hi Jeff, This is really interesting stuff. Question: You mention references to other persisted objects as quasi-foreign-key relationships. How do you join these objects? Also, once a link is achieved how would you query taking advantage of this? I only ask because I don't see any