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
Post a Comment