ADO Recordset 对象中的updateBatch函数的使用方法(转)
Posted IT-渡子腾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ADO Recordset 对象中的updateBatch函数的使用方法(转)相关的知识,希望对你有一定的参考价值。
1.设置 pRecord->CursorLocation = adUseClient;
2.open方法中设置lockType 为adLockBatchOptimistic
_RecordsetPtr pRecord; pRecord.CreateInstance("ADODB.Recordset"); pRecord->CursorLocation = adUseClient; CString strSQL ; strSQL.Append("SELECT * fROM emp "); try { pRecord->Open(_bstr_t(strSQL),pConnection.GetInterfacePtr(),adOpenStatic,adLockBatchOptimistic,adCmdText); CString strValue; while(!pRecord->AdoEOF) { strValue.Format("Test_%d",pRecord->AbsolutePosition); pRecord->PutCollect("name",_variant_t(strValue)); pRecord->MoveNext(); } pRecord->UpdateBatch(adAffectAll); pRecord->Close(); } catch(_com_error &e) { OutputDebugString(e.Description()); }
以上是关于ADO Recordset 对象中的updateBatch函数的使用方法(转)的主要内容,如果未能解决你的问题,请参考以下文章
4. 题干:下列不是ADO.NET对象的是( )。 分数:2分 选项: A:数据适配器DataAdapter B:记录集Recordset C