vote up 3 vote down star
1

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

flag

46% accept rate

6 Answers

vote up 0 vote down

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

link|flag
vote up 4 vote down

SOCI - The C++ Database Access Library

link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

What about sqlite?

http://www.sqlite.org/

link|flag
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 at 17:09
U're right, I got him wrong – Kevin D. May 6 at 17:12

Your Answer

Get an OpenID
or

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