I am trying to update one column for any number of rows.
Here is the function:
public void setAwardsSyncComplete(String[] ids) { String inArray
As you're using transactions, you need to call db.setTransactionSuccessful(); at the end of the try clause. Without this, the update gets rolled back.
See SQLiteDatabase.beginTransaction
Hope this helps,
Phil Lello