Greetings, all, and thank you in advance for your replies to this question.
With RDC for SQLite used with the parameters specified here, will the BeginTransaction, TransactionSuccessful, and EndTransaction work as they do with SQL (example below)?
Any and all replies are welcomed.
Sandy
With RDC for SQLite used with the parameters specified here, will the BeginTransaction, TransactionSuccessful, and EndTransaction work as they do with SQL (example below)?
B4X:
Typical usage:
SQL1.BeginTransaction
Try
'block of statements like:
For i = 1 to 1000
SQL1.ExecNonQuery("INSERT INTO table1 VALUES(...)
Next
SQL1.TransactionSuccessful
Catch
Log(LastException.Message) 'no changes will be made
End Try
SQL1.EndTransaction
Any and all replies are welcomed.
Sandy