class pressflow_transaction in Transaction 5
Legacy compatibility wrapper for transaction class.
Hierarchy
- class \Transaction
- class \pressflow_transaction
Expanded class hierarchy of pressflow_transaction
Deprecated
2008-08-12
See also
transaction
File
- ./
transaction.module, line 250 - Provides a database transaction system for use with InnoDB tables in MySQL.
View source
class pressflow_transaction extends Transaction {
/**
* @see Transaction::rollbackIfFalse
*/
public function rollback_if_false($var) {
return parent::rollbackIfFalse($var);
}
/**
* @see Transaction::willRollback
*/
public function will_rollback() {
return parent::willRollback();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
pressflow_transaction:: |
public | function | ||
pressflow_transaction:: |
public | function | ||
Transaction:: |
private static | property | Will the commit be allowed? | |
Transaction:: |
private static | property | The number of transactions that have been nested within this one. | |
Transaction:: |
public | function | Force this transaction to roll back when finished. | |
Transaction:: |
public | function | If the given value is FALSE (value AND type), roll back the current transaction. | |
Transaction:: |
public | function | Will this transaction roll back instead of committing? | |
Transaction:: |
public | function | Create a new transaction. | |
Transaction:: |
public | function | Complete the transaction by either performing a commit or a rollback depending on the state of the object's allow_commit property. |