ACC2000: Can't Add or Delete Records with ADO AddNew or Delete Method (225899)
The information in this article applies to:
This article was previously published under Q225899 Advanced: Requires expert coding, interoperability, and multiuser skills.
This article applies to a Microsoft Access database (.mdb) and to a Microsoft Access project (.adp).
For a Microsoft Access 2002 version of this article, see 289675.
SYMPTOMS
When you are using ActiveX Data Objects (ADO), if you use the AddNew or Delete method of the Recordset object, and you open the recordset with an unspecified lock type, you may receive one of the following error messages:
Run-time error '3251':
The operation requested by the application is not supported by the provider.
Run-time error '3251':
Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.
CAUSE
By default, ADO recordsets are opened with a lock type of adLockReadOnly, which does not allow additions and deletions.
RESOLUTIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
To allow additions and deletions, open the recordset with a lock type of either adLockOptimistic or adLockPessimistic, as in the following code sample:
Sub DelFirstRec()
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
rs.Open "Select * from TestTable", CurrentProject.Connection, _
adOpenKeyset, adLockOptimistic
rs.MoveFirst
rs.Delete
rs.Close
End Sub
NOTE: You can use this sample code to resolve the behavior in the "Steps to Reproduce Behavior" section of this article.
REFERENCESFor more information about ADO recordsets, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type ado recordset in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
Modification Type: | Major | Last Reviewed: | 6/23/2005 |
---|
Keywords: | kbprb KB225899 |
---|
|