Skip to content Skip to sidebar Skip to footer

How To Search In Sqlite Database By Using String Variable Not Integer?

Part of my application is to bring user account information from dynamic database. When a user entered his username and password, I will search for username in the database and bri

Solution 1:

try this: TW_USERNAME + "= '" + username +"'" Your input parameter should be in single quotes, if it is String.


Post a Comment for "How To Search In Sqlite Database By Using String Variable Not Integer?"