|
DB_TXN->prepare
|
|
#include <db.h>
int
DB_TXN->prepare(DB_TXN *tid, u_int8_t gid[DB_XIDDATASIZE]);
Description
The DB_TXN->prepare function initiates the beginning of a two-phase commit.
In a distributed transaction environment, Berkeley DB can be used as a local
transaction manager. In this case, the distributed transaction manager
must send prepare messages to each local manager. The local
manager must then issue a DB_TXN->prepare and await its successful
return before responding to the distributed transaction manager. Only
after the distributed transaction manager receives successful responses
from all of its prepare messages should it issue any
commit messages.
In the case of nested transactions, preparing the parent
causes all unresolved children of the parent transaction to be committed.
Child transactions should never be explicitly prepared.
Their fate will be resolved along with their parent's during
global recovery.
The gid parameter specifies the global transaction ID by which this
transaction will be known. This global transaction ID will be returned
in calls to DB_ENV->txn_recover, telling the application which global
transactions must be resolved.
The DB_TXN->prepare function returns a non-zero error value on failure and 0 on success.
Errors
The DB_TXN->prepare function may fail and return a non-zero error for errors specified for other Berkeley DB and C library or system functions.
If a catastrophic error has occurred, the DB_TXN->prepare function may fail and return
DB_RUNRECOVERY, in which case all subsequent Berkeley DB calls will fail
in the same way.
See Also
DB_ENV->set_tx_max,
DB_ENV->set_tx_recover,
DB_ENV->set_tx_timestamp,
DB_TXN->abort,
DB_ENV->txn_begin,
DB_ENV->txn_checkpoint,
DB_TXN->commit,
DB_TXN->discard,
DB_TXN->id,
DB_TXN->prepare,
DB_ENV->txn_recover,
DB_TXN->set_timeout
and
DB_ENV->txn_stat.
Copyright Sleepycat Software
|