DbEnv.txn_begin

APIRef

import com.sleepycat.db.*;

public DbTxn txn_begin(DbTxn parent, int flags) throws DbException;

Description

The DbEnv.txn_begin method creates a new transaction in the environment and returns a DbTxn that uniquely identifies it.

If the parent argument is non-null, the new transaction will be a nested transaction, with the transaction indicated by parent as its parent. Transactions may be nested to any level. In the presence of distributed transactions and two-phase commit, only the parental transaction, that is a transaction without a parent specified, should be passed as an argument to DbTxn.prepare.

The flags value must be set to 0 or by bitwise inclusively OR'ing together one or more of the following values:

Db.DB_DIRTY_READ
All read operations performed by the transaction will read modified but not yet committed data. Silently ignored if the Db.DB_DIRTY_READ flag was not specified when the underlying database was opened.

Db.DB_TXN_NOSYNC
Do not synchronously flush the log when this transaction commits or prepares. This means the transaction will exhibit the ACI (atomicity, consistency, and isolation) properties, but not D (durability); that is, database integrity will be maintained but it is possible that this transaction may be undone during recovery.

This behavior may be set for a Berkeley DB environment using the DbEnv.set_flags interface. Any value specified in this interface overrides that setting.

Db.DB_TXN_NOWAIT
If a lock is unavailable for any Berkeley DB operation performed in the context of this transaction, return immediately instead of blocking on the lock. The error return in the case will be Db.DB_LOCK_NOTGRANTED.

Db.DB_TXN_SYNC
Synchronously flush the log when this transaction commits or prepares. This means the transaction will exhibit all of the ACID (atomicity, consistency, isolation, and durability) properties.

This behavior is the default for Berkeley DB environments unless the Db.DB_TXN_NOSYNC flag was specified to the DbEnv.set_flags interface. Any value specified in this interface overrides that setting.

Note: A transaction may not span threads; that is, each transaction must begin and end in the same thread, and each transaction may be used only by a single thread.

Note: Cursors may not span transactions; that is, each cursor must be opened and closed within a single transaction.

Note: A parent transaction may not issue any Berkeley DB operations -- except for DbEnv.txn_begin, DbTxn.abort and DbTxn.commit -- while it has active child transactions (child transactions that have not yet been committed or aborted).

The DbEnv.txn_begin method throws an exception that encapsulates a non-zero error value on failure.

Errors

The DbEnv.txn_begin method may fail and throw an exception encapsulating a non-zero error for the following conditions:

ENOMEM
The maximum number of concurrent transactions has been reached.

The DbEnv.txn_begin method may fail and throw an exception for errors specified for other Berkeley DB and C library or system methods. If a catastrophic error has occurred, the DbEnv.txn_begin method may fail and throw a DbRunRecoveryException, in which case all subsequent Berkeley DB calls will fail in the same way.

Class

DbEnv, DbTxn

See Also

DbEnv.set_tx_max, DbEnv.set_tx_timestamp, DbTxn.abort, DbEnv.txn_begin, DbEnv.txn_checkpoint, DbTxn.commit, DbTxn.discard, DbTxn.id, DbTxn.prepare, DbEnv.txn_recover, and DbEnv.txn_stat.

APIRef

Copyright Sleepycat Software