I've a little question about the select statement with Access database. I want to perform this in a C#/.NET project:
var dataAdapter = new OdbcDataAdapter("SELECT * FROM COMPONENT WHERE TAGNAME = '" + tagName + "'");
For example:
I have a tagName equal to "TEST" and another with "Test". But, right now I retrieve both uppercase and lowercase TagNames. I want to retrieved only lowercase OR uppercase values..
How should I do that? Is there a solution such as Char.IsUpper in Access ?
Thanks in advance, I hope I was clear.
Ars_n