Skip to main content
PostgreSQL

PostgreSQL - Rollback a transaction

PostgreSQL - Rollback a transaction

Undoes (rolls back) every operation performed inside a PostgreSQL transaction begun with PostgreSQL: Begin transaction. Use this action in error handling to keep the data consistent when something fails during the transaction.


Options

Connection

Reference to the PostgreSQL: 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 PostgreSQL: Begin transaction action.
  • Every change made since the transaction began will be undone.