Source for file Oracle.php

Documentation is available at Oracle.php

  1. <?php
  2. /*
  3.  *  $Id: Oracle.php 1619 2007-06-10 19:28:47Z 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_Sequence');
  22. /**
  23.  * Doctrine_Sequence_Oracle
  24.  *
  25.  * @package     Doctrine
  26.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  27.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  28.  * @category    Object Relational Mapping
  29.  * @link        www.phpdoctrine.com
  30.  * @since       1.0
  31.  * @version     $Revision: 1619 $
  32.  */
  33. {
  34.     /**
  35.      * Returns the next free id of a sequence
  36.      *
  37.      * @param string $seqName   name of the sequence
  38.      * @param bool onDemand     when true missing sequences are automatic created
  39.      *
  40.      * @return integer          next id in the given sequence
  41.      */
  42.     public function nextID($seqName$onDemand true)
  43.     {
  44.         $sequenceName $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($seqName)true);
  45.         $query        'SELECT ' $sequenceName '.nextval FROM DUAL';
  46.  
  47.         try {
  48.             $result $this->conn->fetchOne($query);
  49.         catch(Doctrine_Connection_Exception $e{
  50.             if ($onDemand && $e->getPortableCode(== Doctrine::ERR_NOSUCHTABLE{
  51.  
  52.                 try {
  53.                     $result $this->conn->export->createSequence($seqName);
  54.                 catch(Doctrine_Exception $e{
  55.                     throw new Doctrine_Sequence_Exception('on demand sequence ' $seqName ' could not be created');
  56.                 }
  57.                 return $this->nextId($seqNamefalse);
  58.             }
  59.             throw $e;
  60.         }
  61.         return $result;
  62.     }
  63.     /**
  64.      * Returns the autoincrement ID if supported or $id or fetches the current
  65.      * ID in a sequence called: $table.(empty($field) ? '' : '_'.$field)
  66.      *
  67.      * @param   string  name of the table into which a new row was inserted
  68.      * @param   string  name of the field into which a new row was inserted
  69.      */
  70.     public function lastInsertID($table null$field null)
  71.     {
  72.         $seqName $table (empty($field'' '_'.$field);
  73.         $sequenceName =  $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($seqName)true);
  74.  
  75.         return $this->conn->fetchOne('SELECT ' $sequenceName '.currval');
  76.     }
  77.     /**
  78.      * Returns the current id of a sequence
  79.      *
  80.      * @param string $seqName   name of the sequence
  81.      *
  82.      * @return integer          current id in the given sequence
  83.      */
  84.     public function currID($seqName)
  85.     {
  86.         $sequenceName $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($seqName)true);
  87.         $query   'SELECT (last_number-1) FROM user_sequences';
  88.         $query  .= ' WHERE sequence_name=' $this->conn->quote($sequenceName'text');
  89.         $query  .= ' OR sequence_name=' $this->conn->quote(strtoupper($sequenceName)'text');
  90.  
  91.         return $this->conn->fetchOne($query);
  92.     }
  93. }