三、實際測試例子
#include
"stdafx.h"
#include
#include
#pragma comment(lib,"libmysql.lib")
/*資料庫連線用巨集*/
#define host "127.0.0.1"
//資料庫埠號
#define port 3306
// 資料庫埠號
#define username "root"
//資料庫使用者名稱
#define password "qwer123456"
//資料庫密碼
#define database "test"
//資料庫例項的名字
intmain()
else
system
("pause");
return0;
}
執行結果
C語言連線MySQL資料庫
不想用odbc什麼的連線資料庫,想直接用mysql提供的介面連線資料庫。我用的是vs2005。網上的一些介紹都是修改專案屬性等的設定,我不喜歡那樣。首先 我們需要的檔案有mysql.h my alloc.h my list.h mysql com.h mysql time.h mysql versi...
C語言連線mysql資料庫
一 分配或初始化與mysql real connect 相適應的mysql物件。用mysql init 函式。mysql mysql init mysql mysql 描述 分配或初始化與mysql real connect 相適應的mysql物件。如果mysql是null指標,該函式將分配 初始化...
C語言連線mysql資料庫
作業系統是linux,需要mysql客戶端軟體開發庫libmysqlclient,這個函式庫是mysql的組成部分之一。一般標頭檔案都在 usr include mysql路徑下,庫檔案都在 usr lib mysql路徑下。如果沒有需要安裝mysql devel包 mysql devel 5.1....