TransactionErrorBehavior
- Last Updated: July 18, 2022
- 1 minute read
- DataDirect Connectors
- JDBC
- Documentation
Purpose
Determines how the driver handles errors that occur within a transaction. When an error occurs in a transaction, the Greenplum server does not allow any operations on the connection except for rolling back the transaction.
Valid Values
none | RollbackTransaction
Behavior
If set to none, the driver does not roll back the transaction when
an error occurs. The application must handle the error and roll
back the transaction. Any operation on the statement other than
a rollback results in an error.
If set to RollbackTransaction,
the driver rolls back the transaction when an error occurs. In addition
to the original error message, the driver posts an error message
indicating that the transaction has been rolled back.
Data Source Methods
public String
getTransactionErrorBehavior()
public void
setTransactionErrorBehavior(String)
Default
RollbackTransaction
Data Type
String