在VC6中使用c API方式連線MySQL資料庫

2021-05-17 15:40:31 字數 906 閱讀 7970

在vc6中使用c api方式連線mysql資料庫

2、設定vc6環境,在vc工具-選項-目錄,加入剛才的include資料夾的路徑,例如:c:/program files/mysql/mysql server 5.1/include

二、工程設定

3、將lib資料夾中的linmysql.lib和libmysql.dll拷貝到工程目錄下,工程-設定-連線,在物件/庫模組中新增wsock32.lib和libmysql.lib

三、示例

4、先導入測試程式所需的環境,將以下sql語句儲存為sql指令碼檔案並匯入

#vc6通過api連線mysql測試環境

#建立資料庫

drop database if exists `test`;

#如果有這個資料庫,則移除它 create database test;

#建立資料庫

use test;

#使用資料庫

#建立表user,儲存會員屬性

drop table if exists `user`;

create table user

(id int(11

)not null auto_increment,

name varchar(20

),age int(11

),primary key

(id)

);#插入一些資料

insert into user values

(null,

'name1',11

);insert into user values

(null,

'name2',22

);insert into user values

(null,

'name3',33

); 5、測試**

在VC6中使用GDI

包含了標頭檔案和庫 dll和.lib形式的都有 我在編譯過程中出現了編譯錯誤 ulong ptr沒被定義。錯誤在gdiplusinit.h中 typedef status winapi notificationhookproc out ulong ptr token 一行。然後我在gdiplusin...

在 VC6 中使用 GdiPlus 使用

下面用 vc6 來寫乙個 gdiplus 的 demo 工程 step2 新增標頭檔案宣告 在 stdafx.h 中新增以下 microsoft visual c will insert additional declarations immediately before the previous ...

在 VC6 中使用 GdiPlus(五)

下面用 vc6 來寫乙個 gdiplus 的 demo 工程 step2 新增標頭檔案宣告 在 stdafx.h 中新增以下 microsoft visual c will insert additional declarations immediately before the previous ...