【MySQL和MFC】VC++資料庫連接

來源:互聯網
上載者:User
首先安裝MySQL,VS2008
在VC++工程的.cpp檔案上面加入下面代碼部分:
#include<winsock2.h>//定義socket#include"mysql.h"//#pragma comment( lib, "libmysql.lib");//此句話和在附加依賴項中增加libmysql.lib 的功能一樣
工程屬性中如下配置:1、附加元件封裝含標頭檔mysql.h的目錄,include就是mysql-5.0.27-win32\Include檔案夾。2、附加庫目錄,MySql lib中的檔案就是mysql-5.0.27-win32\lib\opt中的檔案3、附加依賴項,名稱為libmysql.lib4、將libmysql.dll拷貝到debug檔案夾中,libmysql.dll在lib檔案夾中有
定義全域的SQL
MYSQL mysql;
mysql_init(&mysql);//初始化bool isConnected=mysql_real_connect(&mysql,"localhost","root","131015","firstsqldb",3306,0,0);//連if (isConnected){    MessageBox(_T("success connected!"));    return;}else{    int i = mysql_errno(&mysql);//串連出錯    const char * s = mysql_error(&mysql);    MessageBox(_T("failed to connect! Please check for your db service."));}mysql_close(&mysql);//關閉sqlMYSQL_RES *result;MYSQL_ROW sql_row;MYSQL_FIELD *fd;int res=mysql_query(&mysql,"select * from mytable");//執行sql命令if(!res){    result=mysql_store_result(&mysql);//儲存查詢到的資料到result    if(result)    {        int i,j;        for(i=0;fd=mysql_fetch_field(result);i++)//擷取列名        {            str[i].Format("s",fd->name);            ForShow=ForShow+str[i]+"\t";        }        j=mysql_num_fields(result);                                while(sql_row=mysql_fetch_row(result))//擷取具體的資料        {            for(i=0;i<j;i++)                 ss.Format("s",sql_row[i]);        }        if(result!=NULL) mysql_free_result(result);      }}else{     MessageBox(_T("query sql failed!"));}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.