Linux下安装使用 mysql connector/C++

时间:2021-06-30 11:31:05

linux下使用 C++连接MySQL数据库,可以使用 mysql connector/C++组件。


(1). 使用C++版本的mysql connector首先需要安装和编译boost库。(另一篇文章详述)

(2). 如果连接本机的mysql那么你还需要在本机安装mysql-server等一系列工具,连接其他服务器的话就不用了。

(3). 然后需要下载mysql connector的头文件和库,解压后将文件夹中的include中的文件和lib中的文件分别拷到/usr/include和/usr/lib中。

 

至此mysql connector就安装成功了! 下面的测试代码我都通过编译正确的!

#include<iostream>  

#include "mysql_driver.h"
#include "mysql_connection.h"

#include <cppconn/driver.h>

using namespace std;

void RunConnectMySQL()
{
sql::mysql::MySQL_Driver *driver;
sql::Connection *con;

driver = sql::mysql::get_mysql_driver_instance();
con = driver->connect("tcp://127.0.0.1:3306", "root", "123456");

delete con;

}

int main(void)
{
RunConnectMySQL();
return 0;
}


g++ test.cpp -o test -lmysqlcppconn

(注意:别忘了链接静态库 -lmysqlcppconn)