I am storing user names and passwords in a mysql database. The problem is when I perform the following query:
Select * FROM sometable WHERE name='name' AND password='pass'
It is not case sensitive, is there anyway for me to force this to be case sensitive?
Any help would be appreciated, thank you.