ubuntu下c++使用mysqlconnector连接mysql数据库

1、安装mysqlconnector

sudo apt-get install libmysqlcppconn-dev

2、安装mysql

sudo apt-get install mysql-server

使用网上广泛引用的一个测试代码

#include <iostream>
#include <sstream>
#include <memory>
#include <string>
#include <stdexcept>

using namespace std;

#include <mysql_connection.h>
#include <mysql_driver.h>
#include <cppconn/driver.h>

using namespace sql;

#define DBHOST "tcp://127.0.0.1:3306"
#define USER "root"
#define PASSWORD "your password here"

int main() {
   Driver *driver;
   Connection *conn;
   driver = get_driver_instance();
   conn = driver->connect(DBHOST, USER, PASSWORD);
   conn->setAutoCommit(0);
   cout<<"DataBase connection autocommit mode = "<<conn->getAutoCommit()<<endl;
   delete conn;
   driver = NULL;
   conn = NULL;
   return 0;
}

使用 g++ -o testmysql  testmysql.cpp -lmysqlcppconn 编译文件,运行即可

一定注意不要写成g++ -o testmysql -lmysqlcppconn testmysql.cpp 网上好多写这样的,让我查了半天也没找出哪错了。。。这样编译不通过

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值