VC 資料庫連線

2021-06-20 14:47:31 字數 719 閱讀 3973

1.建立基於對話方塊的mfc應用程式

放置乙個list box和乙個按鈕

2.在stdafx.h中加入#import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename("eof","rseof")

3.在按鈕觸發事件中加入如下**

//初始化資源

coinitialize(null); //初始化com環境

_connectionptr pcon( __uuidof(connection)); //connection物件是與資料來源相連線,

_recordsetptr pre(__uuidof(recordset)); //而recordset物件記錄集。

trycatch(_com_error *e)

//相應的sql語句

trycatch(_com_error *e)

//讀取資料空內容後的相應操作

while(!pre->rseof)

//釋放資源

pre->close();

pcon->close();

pre.release();

pcon.release();

couninitialize();

VC 連線sql資料庫

include iostream.h 在vc 中使用ado開發資料庫之前,需要匯入ado類資料庫 import c program files common files system ado msado15.dll no namespace rename eof endoffile int main...

vc連線sqlite資料庫

下面是在mfc中連線sqlite資料庫,並向表中插入資料的部分 首先當然是配置sqlite3的執行環境了,tools options directories 裡分別設定所要包含的標頭檔案,lib的路徑,並 將sqlite3.dll拷貝到當前工程目錄下,在引用到的原始檔中包含sqlite3.h標頭檔案...

VC 連線oracle資料庫

1 導入庫檔案,並設定全域性連線字串 import c program files common files system ado msado60 backcompat i386.tlb no namespace rename eof endoffile connectionptr pconn nu...