How to delete a row from a table in SQLite android?
Try this
public boolean favoriteDelete(int id) {
return db.delete(DATABASE_TABLE, KEY_ROWID + "=" + id, null) > 0;
}
You can simply use sql query to delete.
public void delete(String id) {
db.execSQL("delete from "+TBL_NAME+" where Google='"+id+"'");
}
In your query you are passing null in place of whereArgs
db.delete(table, whereClause, whereArgs)
It should be like this
db.delete(TBL_NAME, "Google=?", new String[]{Integer.toString(id)});