You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"I would like to know which function is used to initiate a transaction in SQLite, as I do not see it in the documentation. Typically, it would be 'Begin transaction,' and then 'Commit' to confirm, but I can't find the correct command for that."
The text was updated successfully, but these errors were encountered:
@Blas0117 if in the execute, executeSet and run method you set transaction to true the transaction is manager for you so you do not have to worry. If you run a large batch of commands it will be more efficient to manage the transaction workflow with beginTransaction, commitTransaction and rollbackTransaction in that case put the transaction to false in the batch of commands hope this clarify
"I would like to know which function is used to initiate a transaction in SQLite, as I do not see it in the documentation. Typically, it would be 'Begin transaction,' and then 'Commit' to confirm, but I can't find the correct command for that."
The text was updated successfully, but these errors were encountered: