VC连接access
生活随笔
收集整理的這篇文章主要介紹了
VC连接access
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
(1)首先拷貝 c:\program files\common files\system\ado\ 目錄中的 msado15.dll 文件到項目中。
(2)在VC中加入DLL,具體方法如下:
(3)創建連接對象,和打開數據庫的具體代碼如下:
void CMyDlg::OnButton1() {// TODO: Add your control notification handler code hereif (AfxOleInit())//初始化OLE {_ConnectionPtr m_pConnection;//聲明一個連接對象 _RecordsetPtr m_pRecordset;HRESULT hr;try{hr = m_pConnection.CreateInstance("ADODB.Connection"); //創建連接if(SUCCEEDED(hr))//判斷是否連接成功 {MessageBox("指針連接成功!");m_pConnection->Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=db1.mdb","","",adModeUnknown);//打開數據庫 _variant_t RecordsAffected;//聲明返回被修改的條目數CString strSQL;//SQL字符串語句strSQL.Format("insert into d1(name) values('%s')","正月龍");m_pRecordset = m_pConnection->Execute((_bstr_t)strSQL,&RecordsAffected,adCmdText);//操作數據庫MessageBox("數據加入成功!");//m_pRecordset->Close(); m_pRecordset = m_pConnection->Execute("select count(*) from d1",&RecordsAffected,adCmdText);//返回總條目數_variant_t vIndex = (long)0; _variant_t vCount = m_pRecordset->GetCollect(vIndex);//取得第一個字段的整數值放入vCount變量 CString str;str.Format("總共有%d條數據",vCount.lVal);MessageBox(str);m_pRecordset = m_pConnection->Execute("select * from d1",&RecordsAffected,adCmdText);//m_pRecordset->MoveNext();//m_pRecordset->MoveNext();_variant_t vIndex1 = (long)0; _variant_t vCount1 = m_pRecordset->GetCollect(vIndex1);//取得第一個字段的字符串值放入vCount1變量 CString str1;str1 = vCount1.bstrVal;MessageBox("第一個字段內容是:"+str1);m_pRecordset->Close();}}catch(_com_error e){CString str;str.Format("數據庫連接失敗\r\n錯誤信息:%s",e.ErrorMessage());MessageBox(str);}//MessageBox("初始化 OLE 成功!");}elseMessageBox("初始化 OLE 失敗");}
?
??
轉載于:https://www.cnblogs.com/webcyz/p/6525169.html
總結
以上是生活随笔為你收集整理的VC连接access的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 性能测试脚本之SQLServer执行语句
- 下一篇: 公共语言运行库(CLR)和中间语言(IL