Hi
I have a login form use the following sql statement
select from user where username = "?" and password ="?"
now the two users can login
select from user where username = "TEST" and password ="pwd"
select from user where username = "test" and password ="pwd"
The system see "TEST" same with "test",but I only allow "TEST" login.how to make the select statement case sensible?
How to fix this?Thanks
Mk