Alerty
Alerty

Reputation: 5945

Objective-C: Database support

How can I connect to an Oracle database and SQL Server 2005-2008 database with Objective-C?

Upvotes: 1

Views: 2127

Answers (1)

Georg Fritzsche
Georg Fritzsche

Reputation: 98984

There seem to be few Objective-C libraries, probably because you can simply use the already available C libraries in Objective-C.

You can:

  • look at MacSQL Framework (commercial)
  • use any of the usual C APIs (and possibly wrap them nicely)
  • use any of the C++ abstractions via Objective-C++

Upvotes: 4

Related Questions