I'm a newbie to Android. When I try to access the SQLiteDatabase locally, I'm in trouble with the syntax errors. The code that causes the syntax error is as follows.
final String tbl = "group";
SQLiteDatabase db = dbHelper.getWritableDatabase();
db.delete(tbl, null, null);
There is a syntax error in DELETE FROM group. But it will be right when I alter the variable tbl to
final String tbl = "\"group\"";
Can anyone tell me the cause for the errors? Thanks.
FROMclause. – Lion Apr 22 '12 at 3:39