Source for file Oracle.php

Documentation is available at Oracle.php

  1. <?php
  2. /*
  3.  *  $Id: Oracle.php 1119 2007-02-17 18:21:26Z zYne $
  4.  *
  5.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16.  *
  17.  * This software consists of voluntary contributions made by many individuals
  18.  * and is licensed under the LGPL. For more information, see
  19.  * <http://www.phpdoctrine.com>.
  20.  */
  21. Doctrine::autoload('Doctrine_Transaction');
  22. /**
  23.  *
  24.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  25.  * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
  26.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  27.  * @package     Doctrine
  28.  * @category    Object Relational Mapping
  29.  * @link        www.phpdoctrine.com
  30.  * @since       1.0
  31.  * @version     $Revision: 1119 $
  32.  */
  33. {
  34.     /**
  35.      * createSavepoint
  36.      * creates a new savepoint
  37.      *
  38.      * @param string $savepoint     name of a savepoint to set
  39.      * @return void 
  40.      */
  41.     protected function createSavePoint($savepoint)
  42.     {
  43.         $query 'SAVEPOINT ' $savepoint;
  44.  
  45.         return $this->conn->execute($query);
  46.     }
  47.     /**
  48.      * releaseSavePoint
  49.      * releases given savepoint
  50.      *
  51.      * @param string $savepoint     name of a savepoint to release
  52.      * @return void 
  53.      */
  54.     protected function releaseSavePoint($savepoint)
  55.     {
  56.         // oracle doesn't support manual releasing of savepoints
  57.         return true;
  58.     }
  59.     /**
  60.      * rollbackSavePoint
  61.      * releases given savepoint
  62.      *
  63.      * @param string $savepoint     name of a savepoint to rollback to
  64.      * @return void 
  65.      */
  66.     protected function rollbackSavePoint($savepoint)
  67.     {
  68.         $query 'ROLLBACK TO SAVEPOINT ' $savepoint;
  69.  
  70.         return $this->conn->execute($query);
  71.     }
  72.     /**
  73.      * Set the transacton isolation level.
  74.      *
  75.      * @param   string  standard isolation level
  76.      *                   READ UNCOMMITTED (allows dirty reads)
  77.      *                   READ COMMITTED (prevents dirty reads)
  78.      *                   REPEATABLE READ (prevents nonrepeatable reads)
  79.      *                   SERIALIZABLE (prevents phantom reads)
  80.      * @throws PDOException                         if something fails at the PDO level
  81.      * @throws Doctrine_Transaction_Exception       if using unknown isolation level
  82.      * @return void 
  83.      */
  84.     public function setIsolation($isolation)
  85.     {
  86.         switch ($isolation{
  87.             case 'READ UNCOMMITTED':
  88.                 $isolation 'READ COMMITTED';
  89.                 break;
  90.             case 'READ COMMITTED':
  91.             case 'REPEATABLE READ':
  92.             case 'SERIALIZABLE':
  93.                 $isolation 'SERIALIZABLE';
  94.                 break;
  95.             default:
  96.                 throw new Doctrine_Transaction_Exception('Isolation level ' $isolation ' is not supported.');
  97.         }
  98.  
  99.         $query 'ALTER SESSION ISOLATION LEVEL ' $isolation;
  100.         return $this->conn->execute($query);
  101.     }
  102. }