Using the new ExecQueryAsync method I execute the following SQL statement (AuditNum is an INTEGER column):
The method executes without error, however the rows are not actually removed from the database. When I use the same exact SQL statement with the ExecNonQuery method it behaves as expected and removes the correct rows from the database.
Is this by design or did I overlook an ExecNonQueryAsync method somewhere?
B4X:
DELETE FROM [MyTable] WHERE [AuditNum] IN (1, 2, 3);
Is this by design or did I overlook an ExecNonQueryAsync method somewhere?