mysql客户端的Windows C/C++编程实现(★firecat推荐★)

一、环境准备:

Windows,VS2015


Mysql使用官方c语言版本客户端,mysql-connector-c-6.1.10-win32.zip,不使用c++库,因为c++库依赖boost库

https://downloads.mysql.com/archives/c-c/


我们下载mysql-connector-c-6.1.10-win32.zip,解压,里面的include和lib文件夹是客户端编程需要使用的。




二、客户端编程实现


1、把include和lib文件夹拷贝到工程目录下


2、把lib文件夹下面的文件libmysql.dll拷贝到exe目录


3、VS2015工程属性,配置属性,C/C++,附加包含目录写入“..\include”

// mysqltest.cpp : 定义控制台应用程序的入口点。
//
 
#include "stdafx.h"
#include <mysql.h> //win32建议定义宏 #define WIN32_LEAN_AND_MEAN
#include <string>  
#include <iostream> 
 
using namespace std;
 
#pragma comment(lib, "../lib/libmysql.lib")
 
int main()
{
    //必备数据结构  
    MYSQL mydata;  //=mysql_init((MYSQL*)0);  
 
                   //初始化数据结构  
    if (NULL != mysql_init(&mydata)) {
        cout << "mysql_init()succeed" << endl;
    }
    else {
        cout << "mysql_init()failed" << endl;
        return -1;
    }
 
    //初始化数据库  
    if (0 == mysql_library_init(0, NULL, NULL)) {
        cout << "mysql_library_init()succeed" << endl;
    }
    else {
        cout << "mysql_library_init()failed" << endl;
        return -1;
    }
 
    //连接数据库  
    if (NULL != mysql_real_connect(&mydata, "localhost", "root", "", "test", 3306, NULL, 0))
        //这里的地址,用户名,密码,数据库,端口可以根据自己本地的情况更改  
    {
        cout << "mysql_real_connect()succeed" << endl;
    }
    else
    {
        cout << "mysql_real_connect()failed" << endl;
        return -1;
    }
    //操作……  
    mysql_close(&mydata);
    system("pause");
 
    return 0;
}
 

//win32建议定义宏 #define WIN32_LEAN_AND_MEAN  

上一篇:CSS控制图片显示缩略图


下一篇:MySQL数据库常用命令