devxlogo

Searching with Multiple Fields

Searching with Multiple Fields

Question:
I am developing a s/w with an Access database, using ADO. Now, I want to search a table with multiple columns. As in find method (ADO), it allows only one column to search. How do I search a record with a multiple column search?

Answer:
Use the Recordset’s Filter property. You can use any valid SQL WHERE clause (without the word WHERE), such rs.Filter=”fname=’Mike’ AND lname=’Jones'”. This method filters the recordset to contain only matching records.

To remove the filter, set the filter property to blank or zero.

See also  Get the Most Out of Virtual Credit Cards For Business
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist