vote up 5 vote down star
1

I've only really used phpMyAdmin and SQL calls from PHP to use a database before, and I want to use that same functionality in C++, but I'm not sure how to go about doing that. What is a good database system to use? Is there a good open source one available? What headers/functions do I need in order to connect to/use the database in C++? How is using databases in C++ different from using them in PHP?

flag

7 Answers

vote up 8 vote down check

SQLite is a good, simple, open source database that can be used in C/C++.

link|flag
vote up 5 vote down

Although it's got a couple of quirks SOCI is one of the nicer C++ database abstractions around.

It allows connections to Oracle, MySql and Postgres databases. It also has unsupported backends for SQLite, ODBC and Firebird. We use SQLite and it works well.

A trivial snippet from the docs:

int id = ...;
string name;
int salary;

sql << "select name, salary from persons where id = " << id, 
    into(name), into(salary);

It also plays well with standard library iterators (easy to fill containers with SQL results) and - optionally - some of the Boost types (optional, tuple, date-time fusion::vector).

link|flag
Yes, probably one of the nicest. And the performance with Oracle is on par with native OCI. – unknown (google) May 2 at 6:47
awesome, I'll give it a look, I'm going to download SQLite, and try to get used to using it. Seems wayyyy better than trying to parse files (Which I'm now doing in C. Just to learn :) ) – Carson Myers May 2 at 7:53
vote up 1 vote down

There is a template library called Oracle, Odbc and DB2-CLI Template Library that allows to use different databases from C++.

link|flag
vote up 1 vote down

Postgresql comes with the libqxx library, which is pretty good (although documentation is sometimes a bit sparse):

  • Modern C++ design
  • Supports all the features available in Postgres out of the box (for comparison, getting bulk copy to work in OleDB was quite a nightmare)
  • Cool features, such as automatic retry in case of disconnections
  • Available in the package managers of many *nixes
link|flag
vote up 0 vote down

There is a project on codeproject for this. It is a really nice wrapper class for working with databases.

Also if you only need simple database usage, as mentioned above I would suggest sqlite.

link|flag
vote up 0 vote down

There are many libraries out there. For a MySQL client, there's the MySQL C Api and MySQL++.

link|flag
vote up 0 vote down

I've used MySQL++ for my web servers written in c++ . When I need something which will be used on desktop , I use SQLlite , because it's a great replacement for ofstream and fopen , and it's fast .

What SQL lite actually enables you to do , is to use SQL langauge on a top of a local file, i.e. there is no database server etc. , only the library which mimics the SQL .

I know that Skype uses SQLlite to manage it's data .

On the other hand , if you need something to connect to MySQL , for your example, you write a Web Server app in C++ , you should use MySQL++ , because it's so great :)

link|flag

Your Answer

Get an OpenID
or

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