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

hibernate - How to load global settings frequently used in application in Java -

objective c - Ownership modifiers with manual reference counting -

python 3.x - Mapping specific letters onto a list of words -