. */ Doctrine::autoload('Doctrine_Transaction'); /** * * @author Konsta Vesterinen * @author Lukas Smith (PEAR MDB2 library) * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @package Doctrine * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Transaction_Firebird extends Doctrine_Transaction { /** * createSavepoint * creates a new savepoint * * @param string $savepoint name of a savepoint to set * @return void */ protected function createSavePoint($savepoint) { $query = 'SAVEPOINT '.$savepoint; return $this->conn->getDbh()->query($query); } /** * releaseSavePoint * releases given savepoint * * @param string $savepoint name of a savepoint to release * @return void */ protected function releaseSavePoint($savepoint) { $query = 'RELEASE SAVEPOINT '.$savepoint; return $this->conn->getDbh()->query($query); } /** * rollbackSavePoint * releases given savepoint * * @param string $savepoint name of a savepoint to rollback to * @return void */ protected function rollbackSavePoint($savepoint) { $query = 'ROLLBACK TO SAVEPOINT '.$savepoint; return $this->conn->getDbh()->query($query); } /** * Set the transacton isolation level. * * @param string standard isolation level (SQL-92) * READ UNCOMMITTED (allows dirty reads) * READ COMMITTED (prevents dirty reads) * REPEATABLE READ (prevents nonrepeatable reads) * SERIALIZABLE (prevents phantom reads) * * @param array some transaction options: * 'wait' => 'WAIT' | 'NO WAIT' * 'rw' => 'READ WRITE' | 'READ ONLY' * * @throws PDOException if something fails at the PDO level * @throws Doctrine_Transaction_Exception if using unknown isolation level or unknown wait option * @return void */ public function setIsolation($isolation, $options = array()) { switch ($isolation) { case 'READ UNCOMMITTED': $nativeIsolation = 'READ COMMITTED RECORD_VERSION'; break; case 'READ COMMITTED': $nativeIsolation = 'READ COMMITTED NO RECORD_VERSION'; break; case 'REPEATABLE READ': $nativeIsolation = 'SNAPSHOT'; break; case 'SERIALIZABLE': $nativeIsolation = 'SNAPSHOT TABLE STABILITY'; break; default: throw new Doctrine_Transaction_Exception('isolation level is not supported: ' . $isolation); } $rw = $wait = ''; if(isset($options['wait'])) { switch ($options['wait']) { case 'WAIT': case 'NO WAIT': $wait = ' ' . $options['wait']; break; default: throw new Doctrine_Transaction_Exception('wait option is not supported: ' . $options['wait']); } } if(isset($options['rw'])) { switch ($options['rw']) { case 'READ ONLY': case 'READ WRITE': $rw = ' ' . $options['rw']; break; default: throw new Doctrine_Transaction_Exception('wait option is not supported: ' . $options['rw']); } } $query = 'SET TRANSACTION' . $rw . $wait .' ISOLATION LEVEL ' . $nativeIsolation; $this->conn->getDbh()->query($query); } }