up vote 4 down vote favorite
2
share [g+] share [fb]

Hey, I want to know how to connect databases with C++? Any cross-platform solution which supports many databases? I know about SQLAPI++ but its a shareware... so any free one? What solutions do I have if I limit the OSes to Windows only?

Thanks

link|improve this question

67% accept rate
feedback

6 Answers

up vote 8 down vote accepted

SOCI - The C++ Database Access Library

link|improve this answer
feedback

For cross platform, both for your apps and for the databases they can use, your best bet is to use ODBC in some form. Try Googling for "odbc c++ wrapper" for a number of possible solutions.

link|improve this answer
feedback

Why not the Qt framework? its available under the LGPL now. Its simple to use, cross platform, free, provides an easy api to access several database engines without having to know about the underlying db.

link|improve this answer
feedback

What about sqlite?

http://www.sqlite.org/

link|improve this answer
1  
Doesn't really support "many databases" in the sense of "many different database engines". Certainly can be used to connect to multiple individual databases, but that's an uncommon restriction anyway... – Shog9 May 6 '09 at 17:09
U're right, I got him wrong – Kevin D. May 6 '09 at 17:12
feedback

You can check Debea - SQL Access and ORM for C++

link|improve this answer
feedback

You can use OTL (http://otl.sourceforge.net/) to connect to Oracle, and DB2-CLI Databases. It will also connect using ODBC, so if your DB supports that it should work.

It's based around C++ templeates.

It's free, but I'm not sure what license it's released under.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.