#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;
}
[root@localhost test]# g++ -o my mysql.cpp -l mysqlclient
mysql.cpp: In function ‘int main(int, char**)’:
mysql.cpp:7: 警告:不建議使用從字符串常量到‘char*’的轉換
mysql.cpp:8: 警告:不建議使用從字符串常量到‘char*’的轉換
mysql.cpp:9: 警告:不建議使用從字符串常量到‘char*’的轉換
/usr/bin/ld: cannot find -lmysqlclient
collect2: ld 返回 1
加入-L指定庫所在路徑:
[root@localhost test]# g++ -I/usr/include/mysql -L/usr/lib64/mysql -lmysqlclient -o mysql mysql.cpp
mysql.cpp: In function ‘int main(int, char**)’:
mysql.cpp:7: 警告:不建議使用從字符串常量到‘char*’的轉換
mysql.cpp:8: 警告:不建議使用從字符串常量到‘char*’的轉換
mysql.cpp:9: 警告:不建議使用從字符串常量到‘char*’的轉換
[root@localhost test]# ls
helloworld helloworld.cpp mysql mysql.cpp