I\'ve been searching around and not managed to find a solution or working example so here goes.
I\'ve set up an SQLite database which has five columns with different fie
You should use:
Database.delete(DATABASE_TABLE, "KEY_DATE=? AND KEY_GRADE = ? AND KEY_STYLE = ? AND KEY_PUMPLEVEL = ?", new String[]{"date", "style2", "style", "pumpLevel"});
which simplifies escaping values.