Re: ActiveRecord on Cocoa
Re: ActiveRecord on Cocoa
- Subject: Re: ActiveRecord on Cocoa
- From: Jeff LaMarche <email@hidden>
- Date: Tue, 11 Nov 2008 13:08:55 -0500
Here's another one to consider:
http://code.google.com/p/sqlitepersistentobjects/
It's similar to ActiveRecord, but is designed to be zero-
configuration. I tend to think of it as "reverse-ActiveRecord" because
instead of populating the object based on the database table, we
create the database table based on the properties. Basically, your
class becomes both your class and its own migration.
It's still in active development, but the basic functionality work
quite well and it's very easy to set up, no configuration steps
necessary, just subclass an existing class instead of NSObject, and
set up Objective-C properties for everything that should be persisted,
the framework will do the rest - call save, to save, use a class
method to load or query.
On Tue, Nov 11, 2008 at 1:52 PM, I. Savant
<email@hidden> wrote:
I'm searching for a things like ActiveRecord for Ruby in Objective-C
(but I don't want to use Core-Data).
Anyone can point me to the right solution? I've taken a look at
http://www.cocoadev.com/index.pl?DataCrux but seems to be adbandoned.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden