ROLLBACK

<< RELEASE SAVEPOINT | FB 2.5 Language Reference | SAVEPOINT >>
<< RELEASE SAVEPOINT | FB 2.1 Language Reference | SAVEPOINT >>
<< RELEASE SAVEPOINT | FB 2.0 Language Reference | SAVEPOINT >>

ROLLBACK

Available in: DSQL, ESQL

Syntax

 ROLLBACK [WORK]
    [TRANSACTION tr_name]
    [RETAIN [SNAPSHOT] | TO [SAVEPOINT] sp_name | RELEASE]


  • The TRANSACTION clause is only available in ESQL.
  • The RELEASE clause is only available in ESQL, and is discouraged.
  • RETAIN and TO are only available in DSQL.


ROLLBACK RETAIN

Available in: DSQL

Added in: 2.0

Description

Undoes all the database changes carried out in the transaction without closing it. User variables set with RDB$SET_CONTEXT() remain unchanged.

Syntax

 ROLLBACK [WORK] RETAIN [SNAPSHOT]

Note

The functionality provided by ROLLBACK RETAIN has been present since InterBase 6, but the only way to access it was through the API call isc_rollback_retaining().

back to top of page

ROLLBACK TO SAVEPOINT

Available in: DSQL

Added in: 1.5

Description

Undoes everything that happened in a transaction since the creation of the savepoint.

Syntax

 ROLLBACK [WORK] TO [SAVEPOINT] name

ROLLBACK TO SAVEPOINT performs the following operations:

  • All the database mutations performed within the transaction since the savepoint was created are undone. User variables set with RDB$SET_CONTEXT() remain unchanged.
  • All savepoints created after the one named are destroyed. All earlier savepoints are preserved, as is the savepoint itself. This means that you can rollback to the same savepoint several times.
  • All implicit and explicit record locks acquired since the savepoint are released. Other transactions that have requested access to rows locked after the savepoint must continue to wait until the transaction is committed or rolled back. Other transactions that have not already requested the rows can request and access the unlocked rows immediately.

For a full discussion of savepoints, see SAVEPOINT.

See also:
COMMIT
COMMIT/ROLLBACK

back to top of page
<< RELEASE SAVEPOINT | FB 2.5 Language Reference | SAVEPOINT >>
<< RELEASE SAVEPOINT | FB 2.1 Language Reference | SAVEPOINT >>
<< RELEASE SAVEPOINT | FB 2.0 Language Reference | SAVEPOINT >>