[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Roll back changes made in the transaction, keep transaction context.
Source position: sqldb.pp line 297
public procedure TSQLTransaction.RollbackRetaining; override; |
RollbackRetaining undoes all changes in the databack since the start of the transaction. It can only be executed in an active transaction.
After this, the transaction is kept in an active state. To undo changes and close the transaction, execute Rollback instead.
Remark: | Changes posted in datasets that are coupled to this transaction will not be undone in memory: these datasets must be reloaded from the database (using Close and Open to reload the data as it is in the database. |
Executing RollbackRetaining when no transaction is active will result in an exception. A transaction must be started by calling StartTransaction. If the database backend reports an error, an exception is raised as well.
|
Start a new transaction |
|
|
Commit the transaction, end transaction context. |
|
|
Roll back all changes made in the current transaction. |
|
|
Commit the transaction, retain transaction context. |