最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

C/C++連接Mysql數(shù)據(jù)庫 | 數(shù)據(jù)庫增刪改查C++封裝 | 信息管理系統(tǒng)通

2023-06-09 00:24 作者:沒有溫度的茶  | 我要投稿

報錯Failed to connect to database : Error:This handle is already connected. Use a separate handle for each connection.

解決了。將代碼修改成這樣就不會報這個錯。#include <mysql.h>

#include <iostream>

#include <string>

using namespace std;


const char* host = "localhost";

const char* user = "root";

const char* pw = "123456";

const char* database_name = "database_test";

const int port = 3306;


typedef struct People

{

??int people_id;

??string?people_name;

??string?address_id;

} People;


int main()

{

??MYSQL* con = mysql_init(NULL);

??mysql_options(con, MYSQL_SET_CHARSET_NAME, "GBK");


??if (!mysql_real_connect(con, host, user, pw, database_name, port, NULL, 0))

??{

????fprintf(stderr, "Failed to connect to database : Error:%s\n", mysql_error(con));

????return -1;

??}


??People stu{ 1111,"吳彥祖","軟件工程2班" };

??char sql[1024];

??sprintf(sql, "insert into people (people_id,people_name,address_id) values(%d,'%s','%s')",

????stu.people_id, stu.people_name.c_str(), stu.address_id.c_str());

??if (mysql_query(con, sql))

??{

????fprintf(stderr, "Failed to insert data : Error:%s\n", mysql_error(con));

????mysql_close(con);

????return -1;

??}


??mysql_close(con);

??return 0;

}


C/C++連接Mysql數(shù)據(jù)庫 | 數(shù)據(jù)庫增刪改查C++封裝 | 信息管理系統(tǒng)通的評論 (共 條)

分享到微博請遵守國家法律
周至县| 贺兰县| 巴东县| 鄂伦春自治旗| 望城县| 会泽县| 乡城县| 威信县| 清河县| 西平县| 凤城市| 鄱阳县| 延吉市| 亳州市| 大名县| 定襄县| 平邑县| 湖北省| 乐平市| 临沂市| 金堂县| 天镇县| 普定县| 临安市| 高阳县| 衡南县| 保亭| 莱西市| 三台县| 平阳县| 遂宁市| 清水河县| 西吉县| 大渡口区| 磐安县| 类乌齐县| 清镇市| 乌什县| 工布江达县| 新建县| 门源|