Hello everyone
I am taking username and password from user checking it against db now while checking, it is not case sensitive ..
For example
user enters
user Name : abc
password : a
now the query is "select usrid from userMaster where unm='abc' and password='a' "
this query is giving me output whenever user enters 'abc' as well as 'Abc' for both
i.e. it is not case sensitive what should I do for this