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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ADO Hierarchical Recordsets

Status
Not open for further replies.

VBMental

Programmer
Feb 26, 2002
14
0
0
US
When using the SHAPE provider, are you allowed to use LIKE operator in thee WHERE segment of the SQL phrase?

Example:
SHAPE {SELECT * FROM tblCustomers WHERE fName LIKE '*ackson*'}


When I use the LIKE expression, the recordset seems to return all or no records as if the LIKE expression doesn't work.

Thanks in advance
 
Try to use %, no *.

Example:
Code:
 SHAPE {SELECT * FROM tblCustomers WHERE fName LIKE '%ckson%'}

Good luck! ;-)
Camy.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top