首页 > 编程 > C > 正文

VC基于ADO技术访问数据库的方法

2020-01-26 14:50:31
字体:
来源:转载
供稿:网友

本文实例讲述了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程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选