Source for file Sqlite.php

Documentation is available at Sqlite.php

  1. <?php
  2. /*
  3.  *  $Id: Sqlite.php 1722 2007-06-17 17:50:05Z 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_Sqlite
  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: 1722 $
  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.         $seqcolName   $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME)true);
  46.  
  47.         $query        'INSERT INTO ' $sequenceName ' (' $seqcolName ') VALUES (NULL)';
  48.  
  49.         try {
  50.  
  51.             $this->conn->exec($query);
  52.  
  53.         catch(Doctrine_Connection_Exception $e{
  54.             if ($onDemand && $e->getPortableCode(== Doctrine::ERR_NOSUCHTABLE{
  55.                 // Since we are creating the sequence on demand
  56.                 // we know the first id = 1 so initialize the
  57.                 // sequence at 2
  58.  
  59.                 try {
  60.                     $result $this->conn->export->createSequence($seqName2);
  61.                 catch(Doctrine_Exception $e{
  62.                     throw new Doctrine_Sequence_Exception('on demand sequence ' $seqName ' could not be created');
  63.                 }
  64.                 // First ID of a newly created sequence is 1
  65.                 return 1;
  66.             }
  67.             throw $e;
  68.         }
  69.  
  70.         $value $this->conn->getDbh()->lastInsertId();
  71.  
  72.         if (is_numeric($value)) {
  73.             $query 'DELETE FROM ' $sequenceName ' WHERE ' $seqcolName ' < ' $value;
  74.             
  75.             $this->conn->exec($query);
  76.             /**
  77.             TODO: is the following needed ?
  78.             $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name;
  79.             */
  80.         }
  81.         return $value;
  82.     }
  83.     /**
  84.      * Returns the autoincrement ID if supported or $id or fetches the current
  85.      * ID in a sequence called: $table.(empty($field) ? '' : '_'.$field)
  86.      *
  87.      * @param   string  name of the table into which a new row was inserted
  88.      * @param   string  name of the field into which a new row was inserted
  89.      * @return integer|boolean
  90.      */
  91.     public function lastInsertId($table null$field null)
  92.     {
  93.         return $this->conn->getDbh()->lastInsertId();
  94.     }
  95.     /**
  96.      * Returns the current id of a sequence
  97.      *
  98.      * @param string $seqName   name of the sequence
  99.      *
  100.      * @return integer          current id in the given sequence
  101.      */
  102.     public function currId($seqName)
  103.     {
  104.         $sequenceName $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($seqName)true);
  105.         $seqcolName   $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME)true);
  106.  
  107.         $query        'SELECT MAX(' $seqcolName ') FROM ' $sequenceName;
  108.  
  109.         return (int) $this->conn->fetchOne($query);
  110.     }
  111. }