tags:

views:

203

answers:

5

tell me about the best database connectivity support library framework for c c++

+3  A: 

Are you looking for something like OTL?

Edouard A.
+1  A: 

If you choose to use Postgres as Datbase, It provides libpq - C Library, Which is a excellent library.

libpq is the C application programmer's interface to PostgreSQL. libpq is a set of library functions that allow client programs to pass queries to the PostgreSQL backend server and to receive the results of these queries.

sat
A: 

Have a look at SQLAPI++. Cross-platform, cross-db and relatively easy to use and integrate.

fvu
A: 

Although it's got a few quirks my favourite is SOCI.

It allows you to easily apply SQL queries to Postgres, MySQL, Oracle and Sqlite backends (among others). It's quite portable and has a fairly modern design. Recommended!

MattyT
A: 

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

Lukasz