天天看點

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  

繼續閱讀