[Solved] How to delete rows in SQLite with multiple by where args using Anko?

First off, using the update method is wrong. Deleting is not the same as updating. Updating in SQL means changing the value of one or more fields in a row. What you are looking for is the delete method dbHelper.delete(TABLE_NAME, whereClause=”Your actual where statement here”, args) The where statement follows a slightly different syntax than … Read more