IBX.IBServices.TTransactionAction
Delphi
TTransactionAction = (CommitAction, RollbackAction);
C++
enum DECLSPEC_DENUM TTransactionAction : unsigned char { CommitAction, RollbackAction };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | IBX.IBServices.pas IBX.IBServices.hpp |
IBX.IBServices | IBX.IBServices |
Description
TTransactionAction indicates the action a transaction can take when it times out.
TTransactionAction values are:
| Value | Meaning |
| TARollback | Roll back the transaction. |
| TACommit | Commit the transaction. |
| TARollbackRetaining | Roll back the transaction, but retain the current transaction context. (Requires InterBase 6.0 or later) |
| TACommitRetaining | Commit the transaction, but retain the current transaction context. |