Click to See Complete Forum and Search --> : LIKE Operator


smallfish
February 26th, 2003, 01:36 AM
I have tried to get results from SELECT Query with :
WHERE Field LIKE '111*' (demo)
throughe DataAdapter.Fill() function but it does not work, while in the database (Access) it is.

why should i do ??

DdH
February 26th, 2003, 05:17 PM
Use '%' instate of '*'

Danny

smallfish
February 26th, 2003, 06:23 PM
working