请输入您要查询的百科知识:

 

词条 GetCollect
释义

GetCollect函数的作用

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);

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/31 13:50:23