Skip navigation.
 
mlRe: CoreData-like data storage for 10.3
FROM : Oliver Langer
DATE : Mon Jun 05 18:23:49 2006

Hi Adam,

among things being already posted, you may also try:
  - BDB which is a very, very small wrapper of Berkeley DB (http://
www.sleepycat.com/).
    Berkeley DB is very useful e.g. for storing BLOBS in btree- or 
hash map- like structures.
    The implementation of BDB covers only a small set of functions. 
But with these functions
    it is quite possible to use HashMap or BTrees in conjunction 
with objects conformin to NSCoding.

  - FT. If you somehow want to relate blobs thus forming somehow a 
graph then FT might be interesting for you.
    FT is based on BDB.

FT and BDB can be found at
  http://sourceforge.net/projects/fortytwo

Regards,
  Oliver



Am 29.05.2006 um 17:26 schrieb Adam Salter:

> Does anybody know of a "CoreData" like methodology that works for 
> 10.3 as well?
>
> What I'm looking for is a way to store a fair amount of persistent 
> application data (Cocoa objects) into a database (binary file) on 
> quit and retrieve it again on launch... I would love to use 
> CoreData as that's what it's for, but I would like to support 10.3 
> as well... This could also probably be achieved by NSArchiving to a 
> Plist but it seems like it's stretching their intended usage a little.
>
> I think I could probably roll my own given enough time, but support 
> could be difficult as I don't have a 10.3 machine handy any more :)
>
> Thanks,
> Adam
> _______________________________________________
> MacOSX-dev mailing list
> <email_removed>
> http://www.omnigroup.com/mailman/listinfo/macosx-dev
>

Related mailsAuthorDate
mlCoreData-like data storage for 10.3 Adam Salter May 29, 17:26
mlRe: CoreData-like data storage for 10.3 Markus Hitter May 29, 17:45
mlRe: CoreData-like data storage for 10.3 Chad Leigh May 29, 17:59
mlRe: CoreData-like data storage for 10.3 Markus Hitter May 29, 18:17
mlRe: CoreData-like data storage for 10.3 Chad Leigh May 29, 19:20
mlRe: CoreData-like data storage for 10.3 Paul Lynch May 29, 19:39
mlRe: CoreData-like data storage for 10.3 Oliver Langer Jun 5, 18:23
mlRe: CoreData-like data storage for 10.3 Mont Rothstein Jun 7, 23:55
mlRe: CoreData-like data storage for 10.3 Marcel Weiher Jun 16, 12:06
mlRe: CoreData-like data storage for 10.3 Benjamin Stiglitz Aug 17, 23:27
mlRe: CoreData-like data storage for 10.3 Scott Stevenson Aug 19, 05:38