PRB: Error When You Use adLockBatchOptimistic with OLE DB Provider (261297)
The information in this article applies to:
- Microsoft Active Server Pages
- ActiveX Data Objects (ADO) 2.0
- ActiveX Data Objects (ADO) 2.01
- ActiveX Data Objects (ADO) 2.1
- ActiveX Data Objects (ADO) 2.1 SP1
- ActiveX Data Objects (ADO) 2.1 SP2
- ActiveX Data Objects (ADO) 2.5
- Microsoft SQL Server 6.5
- Microsoft SQL Server 7.0
This article was previously published under Q261297 SYMPTOMS
When you add records to an ADO recordset object and set the LockType value to adLockBatchOptimistic, you may receive the following error message:
Microsoft JET Database Engine error '80040e21'
Errors occurred
/a.asp, line xx
Provider (0x80040E54)
Number of rows with pending changes exceeded the limit.
/a.asp, line xx
Microsoft OLE DB Provider for SQL Server (0x80040E25)
Row handles must all be released before new ones can be obtained.
/a.asp, line xx
CAUSE
When you use server-side cursors for a recordset (CursorLocation = adUseServer), which is the default cursor, some OLE DB providers only support one pending row update.
SQL Server 6.5 and 7.0 only support adLockBatchOptimistic when the cursor type is keyset-driven or static with server-side cursor. In addition, keyset-driven cursors can only be supported with tables that have unique indexes.
RESOLUTION
To resolve this issue, use a client-side cursor. To do this, set the value of the recordset's CursorLocation property to adUseClient as follows:
oRs.CursorLocation = adUseClient
Modification Type: | Major | Last Reviewed: | 4/1/2005 |
---|
Keywords: | kberrmsg kbprb KB261297 |
---|
|