 | | From: | Juergen Lorenz Simon | | Subject: | Database Access Library or Framework sought | | Date: | Mon, 03 Jan 2005 21:35:49 +0100 |
|
|
 | Hello,
Foremost, I'm new to the list. I can imagine the question has been asked before, but since I could not find anything about it the the FAQ, I presume it will be safe to ask:
Is there an objective-c library or framework covering database access? For instance via ODBC? Or proprietary methods? Is a free port of Apple's EnterpriseObjects framework around? I'm using this for a university project, so academic licenses are ok.
Thanks a lot.
J.L.Simon
|
|
 | | From: | David Stes | | Subject: | Re: Database Access Library or Framework sought | | Date: | Tue, 04 Jan 2005 22:40:04 GMT |
|
|
 | Juergen Lorenz Simon wrote: > Hello, > > Foremost, I'm new to the list. I can imagine the question has been asked > before, but since I could not find anything about it the the FAQ, I > presume it will be safe to ask: > > Is there an objective-c library or framework covering database access? > For instance via ODBC? Or proprietary methods?
You could also use embedded SQL statements in Objective-C.
This works just like the frontends that use SQL statements in C; in fact, POC, portable object compiler, uses the .em (embedded .m files) suffix for these source files.
|
|
 | | From: | JAL | | Subject: | Re: Database Access Library or Framework sought | | Date: | 3 Jan 2005 20:42:59 -0800 |
|
|
 | Well I have open source code for a Mac Objective-C database API against MySQL at: http://www.geocities.com/jeff_louie/Mac_Objective_C.htm
Regards, Jeff Louie
Juergen Lorenz Simon wrote: > Hello, > > Foremost, I'm new to the list. I can imagine the question has been asked > before, but since I could not find anything about it the the FAQ, I > presume it will be safe to ask: > > Is there an objective-c library or framework covering database access? > For instance via ODBC? Or proprietary methods? Is a free port of Apple's > EnterpriseObjects framework around? I'm using this for a university > project, so academic licenses are ok. > > Thanks a lot. > > J.L.Simon
|
|
 | | From: | Doc O'Leary | | Subject: | Re: Database Access Library or Framework sought | | Date: | Mon, 03 Jan 2005 20:33:21 -0600 |
|
|
 | In article , Juergen Lorenz Simon wrote:
> Is there an objective-c library or framework covering database access?
You really have to be more specific on what your needs are, foremost being the use of just ObjC itself, or dependencies on other object frameworks. Since you mention Apple, I'll address it from that angle, but post to a Mac programming group in the future if you have Mac questions. > For instance via ODBC? Or proprietary methods? Is a free port of Apple's > EnterpriseObjects framework around? I'm using this for a university > project, so academic licenses are ok.
Please see:
http://www.subsume.com/cgi-bin/go.pl?k=STEnterprise
which is how I approached database persistence with Cocoa. It also includes a page of links to alternatives, should you decide you want to deal with relational mapping at a different level.
|
|
 | | From: | Juergen Lorenz Simon | | Subject: | Re: Database Access Library or Framework sought | | Date: | Tue, 04 Jan 2005 12:58:15 +0100 |
|
|
 | Hello
> Since you mention Apple, I'll address it from that angle, > but post to a Mac programming group in the future if you have Mac > questions. Yes, I left it unclear that I'm working on Linux. I did write the sourcecode on OS X originally, but ported it to Linux recently. So the platform is Objective-C using GNUstep class libraries and runtime on Suse Linux 9.1.
> Please see: > > http://www.subsume.com/cgi-bin/go.pl?k=STEnterprise Thanks for the suggestion.
J.L.Simon
|
|
 | | From: | Christian Brunschen | | Subject: | Re: Database Access Library or Framework sought | | Date: | 4 Jan 2005 09:50:56 GMT |
|
|
 | In article , Juergen Lorenz Simon wrote: >Hello, > >Foremost, I'm new to the list. I can imagine the question has been asked >before, but since I could not find anything about it the the FAQ, I >presume it will be safe to ask: > >Is there an objective-c library or framework covering database access? >For instance via ODBC? Or proprietary methods? Is a free port of Apple's >EnterpriseObjects framework around? I'm using this for a university >project, so academic licenses are ok.
As part of the GnuStep project, there is an implementation of the EOAccess and EOControl frameworks:
>Thanks a lot.
Best wishes,
>J.L.Simon
// Christian Brunschen
|
|
 | | From: | Juergen Lorenz Simon | | Subject: | Re: Database Access Library or Framework sought | | Date: | Tue, 04 Jan 2005 13:00:11 +0100 |
|
|
 | Thanks all for the suggestions! Since I am already familiar with the EnterpriseObjects classes (though Java) I will try the EOAccess/EOControl approach first. Cheers!
|
|