Hi All,
I'm tring to perform various queries against an Access 2003 database from a C# app via OleDB. The 'standard' SQL syntax doesn't seem to work ?
For instance if I have a table;
First_Name
-------------
JOHN
John
SELECT *
FROM T_TEST
where FIRST_NAME like 'Jo%'
- returns no rows
SELECT *
FROM T_TEST
where FIRST_NAME like 'Jo*'
- returns both rows. It doesn't seem to to care about the differences between upper and lower case.
any idea what the syntax should be.
Thanks
Bill
I'm tring to perform various queries against an Access 2003 database from a C# app via OleDB. The 'standard' SQL syntax doesn't seem to work ?
For instance if I have a table;
First_Name
-------------
JOHN
John
SELECT *
FROM T_TEST
where FIRST_NAME like 'Jo%'
- returns no rows
SELECT *
FROM T_TEST
where FIRST_NAME like 'Jo*'
- returns both rows. It doesn't seem to to care about the differences between upper and lower case.
any idea what the syntax should be.
Thanks
Bill