Spec-Zone .ru
спецификации, руководства, описания, API

22.4.6.1. MySQL Connector/C++ Connecting to MySQL

To establish a connection to MySQL Server, retrieve an instance of sql::Connection from a sql::mysql::MySQL_Driver object. A sql::mysql::MySQL_Driver object is returned by sql::mysql::MySQL_Driver::get_mysql_driver_instance().

sql::mysql::MySQL_Driver *driver;sql::Connection *con;driver = sql::mysql::MySQL_Driver::get_mysql_driver_instance();con = driver->connect("tcp://127.0.0.1:3306", "user", "password");delete con;

Make sure that you free, con, the sql::Connection object as soon as you do not need it any more. But do not explicitly free driver, the connector object! The connector will take care of freeing that.