Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't Find any online documentation for MySQL c++ connector API

Tags:

c++

mysql

I started working on mysql c++ connector API. But I can't find any online documentation for the API , I can only find example. Is there any link (or hidden way using doxygen) to generate documentation ?

like image 493
Vivek Goel Avatar asked Mar 15 '11 05:03

Vivek Goel


2 Answers

I think http://dev.mysql.com/tech-resources/articles/mysql-connector-cpp.html Would be most suitable for this.

like image 111
Steven Hammons Avatar answered Oct 21 '22 23:10

Steven Hammons


I have the same difficulties trying to find the documentation, but somewhere in the MySQL docs I found that the MySQL C++ Connector was designed to be compatible with the JDBC 4.0 API.

The MySQL Connector/C++ is compatible with the JDBC 4.0 API. However, MySQL Connector/C++ does not implement all of the JDBC 4.0 API methods.

Approximately 80% percent of the methods should work. That API can be found here.

like image 35
sluijs Avatar answered Oct 21 '22 23:10

sluijs