Add a commit to make sure the database has uncommitted data for the following query.

This commit is contained in:
Maurice Parker 2022-03-26 13:32:52 -05:00
parent b4a5b9eb9e
commit bf76aae903

View File

@ -30,6 +30,8 @@ struct SyncStatusTable: DatabaseTable {
let updateSQL = "update syncStatus set selected = true"
database.executeUpdate(updateSQL, withArgumentsIn: nil)
database.commit()
var selectSQL = "select * from syncStatus where selected == true"
if let limit = limit {
selectSQL = "\(selectSQL) limit \(limit)"