Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the best database connectivity support library framework for c c++? [closed]

Tags:

c++

c

database

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

like image 437
Buddhi Avatar asked Dec 29 '22 13:12

Buddhi


2 Answers

Are you looking for something like OTL?

like image 74
Edouard A. Avatar answered Jan 01 '23 02:01

Edouard 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.

like image 27
Satbir Avatar answered Jan 01 '23 01:01

Satbir