MySQL - Rollback a transaction
MySQL - Rollback a transaction
Undoes (rolls back) every operation performed inside a MySQL transaction begun with MySQL: Begin transaction. Use this action in error handling to keep the data consistent when something fails during the transaction.
Options
Connection
Reference to the MySQL: Connection action whose transaction will be rolled back.
Returns
This action has no returns.
Rules and Conditions
- The Connection field is required.
- It must be used after a MySQL: Begin transaction action.
- Every change made since the transaction began will be undone.