tags:

views:

1284

answers:

4

What Database Abstraction Layer libraries would you recommend for use with C++? I am more interested in solutions for non-Windows platforms, but that is personal preference. Which libraries would you recommend and why?

+1  A: 

I'd recommend using an ODBC library.

Here are the first two when I googled:

libodbc++

sqlapi++

luke
+1  A: 

Personally, I like the database template library.

Max Lybbert
+3  A: 

Take a look at SOCI

Apparently, it is a serious candidate for Boost.

Nemanja Trifunovic
A: 

A very similar SO thread.

luke