GetCollect函式的作用在VC++中用来获取收集的字元串。
基本介绍
- 中文名GetCollect
- 套用学科计算机科学与技术
- 适用领域範围C++
- 适用领域範围资料库
- 作用在VC++中用来获取收集的字元串
作用
GetCollect函式的作用在VC++中用来获取收集的字元串;
在介绍GetCollect之前,说明它的产生和套用的环境ADO资料库;为了取得结果记录集,我们定义一个指向Recordset对象的指针:_RecordsetPtr m_pRecordset;
并为其创建Recordset对象的实例: m_pRecordset.CreateInstance("ADODB.Recordset");
例如
(_bstr_t)m_Ado.m_pRecordset->GetCollect("编号"));
m_Ado.m_pRecordset->MoveNext();//将记录集指针移动到下一条记录
就是来获取“编号”这个字元,m_Ado 是ADO的一个实例。
vID = m_pRecordset-> GetCollect(_variant_t((long)0));///取得第1列的值,从0开始计数,你也可以直接给出列的名称,如下一行
vUsername = m_pRecordset-> GetCollect( "username ");///取得username栏位的值
与之相对应的是是PutCollect(A,B),是将B中的数据加入到资料库的A中,是两个变数的函式。
例如
m_Ado.m_pRecordset->PutCollect("编号",(_bstr_t)m_ID);
套用範围
m_Ado.m_pRecordset->PutCollect("编号",(_bstr_t)m_ID);