C++中使用MySQL,中使用mysql

來源:互聯網
上載者:User

C++中使用MySQL,中使用mysql

我的電腦上的軟體如下:

VS2012 

MySQL 5.6

作業系統是64位win8.1


1.前提

下載並安裝MySQL 

2.配置

(1)在項目中 屬性》C++》常規》添加附加元件封裝含目錄:MY_SQL的目錄/include

(2)在項目中 屬性》連接器》常規》添加附加庫目錄:MY_SQL的目錄/lib

(3)在項目中 屬性》連接器》輸入》添加附加依賴項:libmysql.lib

3.注意事項

如果已經按上述配置好但是還是編譯不通過,提示:

1>  正在產生代碼...
1>BaseDB.obj : error LNK2019: 無法解析的外部符號 _mysql_init@4,該符號在函數 "public: bool __thiscall BaseDB::openConnect(void)" (?openConnect@BaseDB@@QAE_NXZ) 中被引用
1>BaseDB.obj : error LNK2019: 無法解析的外部符號 _mysql_real_connect@32,該符號在函數 "public: bool __thiscall BaseDB::openConnect(void)" (?openConnect@BaseDB@@QAE_NXZ) 中被引用
1>BaseDB.obj : error LNK2019: 無法解析的外部符號 _mysql_query@8,該符號在函數 "public: struct st_mysql_res * __thiscall BaseDB::doQuery(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?doQuery@BaseDB@@QAEPAUst_mysql_res@@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中被引用
1>BaseDB.obj : error LNK2019: 無法解析的外部符號 _mysql_store_result@4,該符號在函數 "public: struct st_mysql_res * __thiscall BaseDB::doQuery(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?doQuery@BaseDB@@QAEPAUst_mysql_res@@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中被引用
1>BaseDB.obj : error LNK2019: 無法解析的外部符號 _mysql_close@4,該符號在函數 "public: void __thiscall BaseDB::closeConnect(void)" (?closeConnect@BaseDB@@QAEXXZ) 中被引用
1>DBUtil.obj : error LNK2019: 無法解析的外部符號 _mysql_free_result@4,該符號在函數 "public: static bool __cdecl DBUtil::checkUserLogin(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?checkUserLogin@DBUtil@@SA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) 中被引用
1>E:\Flighting\MySQLtest\ConsoleApplication1\Debug\ConsoleApplication1.exe : fatal error LNK1120: 6 個無法解析的外部命令
1>
1>產生失敗。


這個問題的產生原因是:你裝的MySQL64位的,而VS2012預設的運行平台是32位的所以不支援

解決辦法有兩個:(1)項目屬性》右上方有一個組態管理員》把你的項目的運行平台改為X64(如果沒有就建立一個)

(2)如果項目中已經引入了其他32位的附加庫,貿然修改成64位會導致原來的庫編譯不通過,這樣沒辦法只好上網搜一個mysql32為的lib和dll


最後,如果運行時提示找不到libmysql.dll 就把libmysql,dll複製到System32/SysWow64 吧


代碼執行個體:

#include <Windows.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <mysql.h> #include <iostream>using namespace std;int main(){    const char user[] = "root";         //username    const char pswd[] = "root";         //password    const char host[] = "localhost";    //or"127.0.0.1"    const char table[] = "test";        //database    unsigned int port = 3306;           //server port            MYSQL myCont;    MYSQL_RES *result;    MYSQL_ROW sql_row;    MYSQL_FIELD *fd;    char column[32][32];    int res;    mysql_init(&myCont);    if(mysql_real_connect(&myCont,host,user,pswd,table,port,NULL,0))    {        cout<<"connect succeed!"<<endl;        mysql_query(&myCont, "SET NAMES GBK"); //設定編碼格式,否則在cmd下無法顯示中文        res=mysql_query(&myCont,"select * from samples");//查詢        if(!res)        {            result=mysql_store_result(&myCont);//儲存查詢到的資料到result            if(result)            {                int i,j;                cout<<"number of result: "<<(unsigned long)mysql_num_rows(result)<<endl;                for(i=0;fd=mysql_fetch_field(result);i++)//擷取列名                {                    strcpy(column[i],fd->name);                }                j=mysql_num_fields(result);                for(i=0;i<j;i++)                {                    printf("%s\t",column[i]);                }                printf("\n");                while(sql_row=mysql_fetch_row(result))//擷取具體的資料                {                    for(i=0;i<j;i++)                    {                        printf("%s\n",sql_row[i]);                    }                    printf("\n");                }            }        }        else        {            cout<<"query sql failed!"<<endl;        }    }    else    {        cout<<"connect failed!"<<endl;    }    if(result!=NULL) mysql_free_result(result);//釋放結果資源    mysql_close(&myCont);//中斷連線    return 0;}


相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.