PRB: ADO Find Method Only Supports One Criteria

ID: Q195222

The information in this article applies to:

SYMPTOMS

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.

CAUSE

The Find method is a single column operation only because the OLE DB specification defines IRowsetFind this way.

RESOLUTION

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. The limitations of this Multi-Find method versus the ADO Find method are that it does not support the "SkipRows", "SearchDirection", or "Start" parameters. If you want these features, you need to create a more complicated custom multi-find method. The Multi-Find method would have to parse the criteria string out properly, navigate the recordset accordingly while checking each criteria for matches.

STATUS

This behavior is by design.

MORE INFORMATION

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.

Steps to Reproduce Behavior

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.

REFERENCES

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