本文实例讲述了VC基于ADO技术访问数据库的方法。分享给大家供大家参考。具体如下:
一、在StdAfx.h文件中添加
复制代码 代码如下:
#import "C:/Program Files/Common Files/System/ado/msado15.dll" no_namespace rename("EOF","rsEOF")
导入ADO引擎。
二、数据库应用层操作
void CADOExample1Dlg::OnBtnQuery() { // TODO: Add your control notification handler code here CoInitialize(NULL); _ConnectionPtr pConn(__uuidof(Connection)); _RecordsetPtr pRst(__uuidof(Recordset)); pConn->ConnectionString = "Provider=SQLOLEDB.1;Password=123456;Persist Security Info=True;User ID=sa;Initial Catalog=db_test;Data Source=."; pConn->Open("","","",adConnectUnspecified); pRst = pConn->Execute("select * from tb_image",NULL,adCmdText); while(!pRst->rsEOF) { ((CListBox*)GetDlgItem(IDC_LIST1))->AddString( (_bstr_t)pRst->GetCollect("imageID")); pRst->MoveNext(); } pRst->Close(); pConn->Close(); pRst.Release(); pConn.Release(); CoUninitialize(); }
希望本文所述对大家的VC程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索数据库
, vc
ADO技术
vc ado访问数据库、vc数据库编程实例ado、vc ado oracle数据库、vc ado数据库编程、ado vc 数据库,以便于您获取更多的相关知识。
时间: 2024-11-28 18:44:19