I want to remove all rows that i entered from my SQLite database table. The table name is tbltask. I tried to drop the table and delete * from table, but th
getWritableDatabase().execSQL("DELETE FROM " + "contacts" + ";");
Here contacs is my table name.. Try it..It works for me..