ID: Q195222
The information in this article applies to:
When you attempt to use the ActiveX Data Objects (ADO) Find method to search by multiple criteria, or in other words you use AND, the following error occurs:
Error: 3001:
This application is using arguments that are of the wrong type, out
of acceptable range or in conflict with one another.
The Find method is a single column operation only because the OLE DB specification defines IRowsetFind this way.
WARNING: Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose.
This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.asp
Here are four possible workarounds to this limitation.
-or-
-or-
A code sample that illustrates this method follows:
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
'Create a variable for the Cloned Recordset.
Dim clone_rs As ADODB.Recordset
Set cn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")
With cn
.ConnectionString = "PROVIDER=SQLOLEDB;" & _
"DATA SOURCE=<server>;" & _
"USER ID=<uid>;" & _
"PASSWORD=<pwd>;" & _
"INITIAL CATALOG=<init_cat>"
.Open
End With
With rs
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockBatchOptimistic
.ActiveConnection = cn
.Open "select * from authors"
End With
'A clone recordset has some benefits :
' - Very little overhead, it is only an object variable containning a
' reference to the original recordset.
' - It does not require another round trip to the server.
' - It maintains separate but shareable bookmarks with the original.
' - Closing and filtering clones does not affect the original or
' other clones.
'Create a clone of the recordset.
Set clone_rs = Rs.Clone
'Apply a filter to the clone using the criteria passed in.
clone_rs.Filter = "state = 'CA' AND city = 'Oakland'"
If clone_rs.EOF Or clone_rs.BOF Then
'If criteria not found move to EOF; just as ADO's Find
rs.MoveLast
rs.MoveNext
Else
'If found, move the Recordset's bookmark to the same location as the
'clone's bookmark.
rs.Bookmark = clone_rs.Bookmark
End If
clone_rs.Close
Set clone_rs = Nothing
rs.Close
cn.Close
Set rs = Nothing
Set cn = Nothing
End Sub
-or-
A simple Multi_Find routine would be a modification of the ideas in the third workaround. For instance:
Public Sub Multi_Find( _
ByRef oRs As ADODB.Recordset, _
sCriteria As String)
'
'This Sub Routine simulates a Find Method that accepts Multi-Find
'Criteria. It searches columns in a recordset for specific values.
'
'ADO Recordset's Find Method has a limitation of single criteria
'finds.
'For instance:
' ADO Recordset's Find only accepts criteria like the following:
' rs.Find = "state = 'CA'"
'
'It generates an error if multiple criteria are passed to it:
' rs.Find = "state = 'CA' AND city = 'Oakland'"
'
'This Sub Routine has the following syntax:
' Multi_Find oRs, sCriteria
'Where:
' oRs is the ADO Recordset object where the Find is to be done.
' sCriteria is a String in the same format as the Find method
' with the addition of multiple conditions can be provided so
' long as each is joined by an "AND".
'
'Example:
' Multi_Find rs, "state = 'CA' AND city = 'Oakland'"
Dim clone_rs As ADODB.Recordset
Set clone_rs = oRs.Clone
clone_rs.Filter = sCriteria
If clone_rs.EOF Or clone_rs.BOF Then
oRs.MoveLast
oRs.MoveNext
Else
oRs.Bookmark = clone_rs.Bookmark
End If
clone_rs.Close
Set clone_rs = Nothing
End Sub
This behavior is by design.
The ADO Help documentation states the following for the Find method's first argument, criteria:
A String containing a statement that specifies the column name,
comparison operator, and value to use in the search.
1. Start Microsoft Visual Basic, Form1 is created by default.
2. Set a Project Reference to the Microsoft ActiveX Data Objects 2.0
Library.
3. Insert a command button on the form.
4. Insert the following code into the Command1_Click event:
Dim objConnection As New ADODB.Connection
Dim rs As New ADODB.Recordset
objConnection.ConnectionString = _
"Provider=Microsoft.Jet.OLEDB.3.51;Data Source=nwind.mdb"
objConnection.Open
rs.Open "Select * from customers", objConnection, _
adOpenStatic, adLockOptimistic
rs.Find "Customerid = 1 and companyname = 'Hello'"
5. Run the form and click the command button.
RESULTS: The error occurs.
For additional information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q193871
TITLE : INFO: Passing ADO Recordsets in Visual Basic Procedures
(c) Microsoft Corporation 1998. All Rights Reserved. Contributions by
Matthew Hofacker, Microsoft Corporation.
Additional query words:
Keywords : kbADO150 kbADO200
Version : WINDOWS:1.5,2.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 19, 1999