240717班级,工业化控制系统,煤矿相关行业,昆仑系统
123
wangky
2024-10-28 38a299bb8f447b3e54dde0aa91ebcc205b4aebf0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "MySQL.h"
#include <WinSock2.h>
#include <mysql.h>
#include <iostream>
#include <string>
using namespace std;
int main() {
    MYSQL mysql;
    mysql_init(&mysql);//初始化
    //连接数据库服务器服务器      IP               用户名    密码      数据库端口号
    mysql_real_connect(&mysql, "192.168.136.128", "root", "123456", "wang", 3306, NULL, 0);
 
    string sql="set names gbk";
    mysql_real_query(&mysql, sql.c_str(), sql.size());
        mysql_close(&mysql);
    return 0;