Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
LIKE operataor
Message
From
26/09/2001 11:43:06
Alex Zhadanov
Computer Generated Solutions
New York City, New York, United States
 
 
To
All
General information
Forum:
Visual Basic
Category:
Database DAO/RDO/ODBC/ADO
Title:
LIKE operataor
Miscellaneous
Thread ID:
00561030
Message ID:
00561030
Views:
47
Hi,All.
I have problem with LIKE operator in select statement in ADO with Access Data base.
When i run such :select * from table where companyname like 'A*' from inside
access query everything works ok.But it 's not working when i try to create
recordset:
ssql = "select * from table where companyname like 'A*'"
Set rsleaves = New ADODB.Recordset
rsleaves.CursorLocation = adUseClient
rsleaves.Open sSql, cn, adOpenStatic, adLockReadOnly
But if i open recordset with all records and apply filter it works fine.
ssql = "select * from table "
Set rsleaves = New ADODB.Recordset
rsleaves.CursorLocation = adUseClient
rsleaves.Open sSql, cn, adOpenStatic, adLockReadOnly
rsleaves.filter = "companyname like 'A*'"
Why it happened?
Thank you
Alex
Next
Reply
Map
View

Click here to load this message in the networking platform