TransactionMode
- Last Updated: January 24, 2023
- 1 minute read
- DataDirect Connectors
- JDBC
- Microsoft SQL Server 6.0
- Documentation
Purpose
Controls how the driver delimits the start of a local transaction.
Valid values
implicit | explicit
Behavior
If set to implicit, the driver uses implicit transaction mode. This means
that the database, not the driver, automatically starts a transaction when a transactionable
statement is executed. Typically, implicit transaction mode is more efficient than explicit
transaction mode because the driver does not have to send commands to start a transaction
and a transaction is not started until it is needed. When TRUNCATE TABLE statements are used
with implicit transaction mode, the database may roll back the transaction if an error
occurs. If this occurs, use the explicit value for this property.
If set to explicit, the driver uses explicit transaction mode. This means
that the driver, not the database starts a new transaction if the previous transaction was
committed or rolled back.
Data source method
public String getTransactionMode()
public void
setTransactionMode(String)
Default
implicit
Data type
String