Is this the correct way to delete rows with Multiple WHERE arguments? I am trying to make it as safe as I can to the database query.
db.delete(TABLE, NAME + "=? and " + ID + "=? and " + ARG3 + "=?", new String[] { myName, x, argument3 });
Also is it okay that ID is a integer? Can I still use it inside String[]
for this?