文件名称:VC 遍历记录集的实现方法和代码.rar
文件大小:68KB
文件格式:RAR
更新时间:2022-07-30 06:05:56
VC 源码-界面窗体
VC 遍历记录集的例子,需要数据库配合,核心代码如下: //连接数据库 OnInitADOConn(); //设置查询字符串 _bstr_t bstrSQL = "select * from employees order by 员工编号 desc"; //创建记录集指针对象实例 m_pRecordset.CreateInstance(__uuidof(Recordset)); //打开记录集 m_pRecordset->Open(bstrSQL,m_pConnection.GetInterfacePtr(),adOpenDynamic, adLockOptimistic,adCmdText); //遍历记录集 while(!m_pRecordset->adoEOF) { m_Grid.InsertItem(0,""); m_Grid.SetItemText(0,0,(char*)(_bstr_t)m_pRecordset->GetCollect("员工编号")); m_Grid.SetItemText(0,1,(char*)(_bstr_t)m_pRecordset->GetCollect("员工姓名")); m_Grid.SetItemText(0,2,(char*)(_bstr_t)m_pRecordset->GetCollect("所属部门")); m_Grid.SetItemText(0,3,(char*)(_bstr_t)m_pRecordset->GetCollect("基本工资")); //将记录集指针移动到下一条记录 m_pRecordset->MoveNext(); } //断开数据库连接 ExitConnect();
【文件预览】:
codesc.net
----遍历记录集()
--------res()
--------CountResDlg.cpp(6KB)
--------CountRes.dsp(4KB)
--------CountRes.aps(20KB)
--------shujuku.mdb(328KB)
--------StdAfx.cpp(210B)
--------resource.h(686B)
--------msado15.tlh(217KB)
--------msado15.tli(163KB)
--------StdAfx.h(1KB)
--------CountRes.h(1KB)
--------CountRes.cpp(2KB)
--------CountRes.rc(5KB)
--------CountRes.dsw(539B)
--------CountResDlg.h(1KB)
--------ReadMe.txt(4KB)
--------CountRes.clw(1KB)