I am trying to update one column for any number of rows.
Here is the function:
public void setAwardsSyncComplete(String[] ids) { String inArray
You need to call db.setTransactionSuccussful() after db.update otherwise any changes will be rolled back when you call endTransaction().
db.setTransactionSuccussful()
db.update
endTransaction()