Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Searching between 2 fields

Status
Not open for further replies.

rissac

Technical User
May 9, 2003
79
IN
I'm developing a search page for my database and I need to find the results between two field options. I seem to be getting an error every time I want to search for the results. I am using Dreamweaver for asp development. Does anyone have any recommendations? Error below.

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'Client.client_ID 14 AND job_act = 'active''.


Link to record set is below.
 
I would recommend you post this either in the ASP forum or one of the Access forums. But just as a starter, you probably want that to read:

Code:
Client.client_ID = 14 AND job_act = 'active'

--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top