Re: ActiveRecord on Cocoa

2008-11-11 Thread Colin Barrett
You might want to check out OmniDataObject from the OmniGroup. It works on both the Mac and iPhone and is used in both OmniFocus Mac and OmniFocus iPhone http://www.omnigroup.com/developer/ -Colin On Tue, Nov 11, 2008 at 2:47 AM, malcom <[EMAIL PROTECTED]> wrote: > Hello List, > I'm searching fo

Re: ActiveRecord on Cocoa

2008-11-11 Thread Jeff LaMarche
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 data

Re: ActiveRecord on Cocoa

2008-11-11 Thread Jason Sallis
You might want to check out this Active Record implementation: http://github.com/aptiva/activerecord/tree/master - Jason On 11-Nov-08, at 8:41 AM, malcom wrote: The program engine itself should run both on iPhone and Mac platform so I can't use CoreData (and in fact the same thing is for Data

Re: ActiveRecord on Cocoa

2008-11-11 Thread malcom
The program engine itself should run both on iPhone and Mac platform so I can't use CoreData (and in fact the same thing is for DataCrux). I'm looking at sqlitepersistentobjects but seems to be in beta. Anyone used it yet? On Tue, Nov 11, 2008 at 1:52 PM, I. Savant <[EMAIL PROTECTED]> wrote: >> I'

Re: ActiveRecord on Cocoa

2008-11-11 Thread I. Savant
On Nov 11, 2008, at 8:57 AM, Devon Ferns wrote: Maybe he wants to use it where there is no Core Data i.e. iPhone. A salient point - it's hard to tell sometimes, given the odd rules surrounding the whole "iPhone discussion on cocoa-dev" thing. ;-) OP, is this why? -- I.S. ___

Re: ActiveRecord on Cocoa

2008-11-11 Thread Devon Ferns
Maybe he wants to use it where there is no Core Data i.e. iPhone. This was announced a few months back for storing in sqlite http://code.google.com/p/sqlitepersistentobjects/ I haven't used it myself since I'm not sure if it's been enhanced to automatically alter the table if you have the table

Re: ActiveRecord on Cocoa

2008-11-11 Thread I. Savant
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. Why would you be alright with using something like Dat

ActiveRecord on Cocoa

2008-11-11 Thread malcom
Hello List, 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. Thanks