is where clause not case-sensitive??
i tried using different versions of query for the table data:
username(TEXT)    pass(TEXT)
admin                admin
The above table has only one entry
SELECT pass FROM lbdb_user WHERE username = "Admin";
SELECT pass FROM lbdb_user WHERE username = "admiN";
SELECT pass FROM lbdb_user WHERE username = "admin   ";
all the above queries that i ran produced the same result.
 
     
    