sql - @gmail SQLite Error Android Email ID Key -


this part of code:

string selectquery = "select  * " + table_conv                 + " " + key_emailid + " = " + user_emailid; 

while trying query using:

cursor cursor = db.rawquery(selectquery, null); 

i'm getting:

sqlite error code 1 @gmail

try .. appending '. might solve ur problem

string selectquery = "select  * " + table_conv             + " " + key_emailid + " = '" + user_emailid +"'"; 

Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -