MySQL - Begin transaction
MySQL - Begin transaction
Begins a transaction on a MySQL connection. Every operation run after this action is part of the transaction and is only persisted when the MySQL: Commit a transaction action runs. If something goes wrong, use MySQL: Rollback a transaction to undo every change.
Options
Connection
Reference to the MySQL: Connection action the transaction will be started on.
Returns
This action has no returns.
Rules and Conditions
- The Connection field is required.
- After beginning the transaction, use MySQL: Commit a transaction to confirm or MySQL: Rollback a transaction to undo the changes.