Have someone experienced with async methods in SQLCipher? For some reason they don't work in my project, this code returns a success = true
But nothing happens, it never writes the new item to the db.
B4X:
sql.AddNonQueryToBatch($"INSERT OR REPLACE INTO ${table} VALUES(?, ?)"$,Array as String(Name,id))
Dim SenderFilter As Object = sql.ExecNonQueryBatch("SQL2")
WaitFor (SenderFilter) SQL2_NonQueryComplete (Success As Boolean)
Log("NonQuery: " & Success)