Source for file Mssql.php

Documentation is available at Mssql.php

  1. <?php
  2. /*
  3.  *  $Id: Mssql.php 1934 2007-07-05 22:42:32Z 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_Mssql
  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: 1934 $
  32.  */
  33. {
  34.     /**
  35.      * Returns the next free id of a sequence
  36.      *
  37.      * @param string $seqName   name of the sequence
  38.      * @param bool              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.  
  48.         if ($this->checkSequence($sequenceName)) {
  49.             $query 'SET IDENTITY_INSERT ' $sequenceName ' OFF '
  50.                    . 'INSERT INTO ' $sequenceName ' DEFAULT VALUES';
  51.         else {
  52.             $query 'INSERT INTO ' $sequenceName ' (' $seqcolName ') VALUES (0)';
  53.         }
  54.         
  55.         try {
  56.  
  57.             $this->conn->exec($query);
  58.  
  59.         catch(Doctrine_Connection_Exception $e{
  60.             if ($onDemand && $e->getPortableCode(== Doctrine::ERR_NOSUCHTABLE{
  61.                 // Since we are creating the sequence on demand
  62.                 // we know the first id = 1 so initialize the
  63.                 // sequence at 2
  64.                 try {
  65.                     $result $this->conn->export->createSequence($seqName2);
  66.                 catch(Doctrine_Exception $e{
  67.                     throw new Doctrine_Sequence_Exception('on demand sequence ' $seqName ' could not be created');
  68.                 }
  69.                 
  70.                 /**
  71.                  * This could actually be a table that starts at 18.. oh well..
  72.                  * we will keep the fallback to return 1 in case we skip this.. which
  73.                  * should really not happen.. otherwise the returned values is biased.
  74.                  */
  75.                 if ($this->checkSequence($seqName)) {
  76.                     return $this->lastInsertId($seqName);
  77.                 }
  78.                 
  79.                 return 1;
  80.             }
  81.             throw $e;
  82.         }
  83.         
  84.         $value $this->lastInsertId($sequenceName);
  85.  
  86.         if (is_numeric($value)) {
  87.             $query 'DELETE FROM ' $sequenceName ' WHERE ' $seqcolName ' < ' $value;
  88.             
  89.             try {
  90.                 $this->conn->exec($query);
  91.             catch (Doctrine_Connection_Exception $e{
  92.                 throw new Doctrine_Sequence_Exception('Could not delete previous sequence from ' $sequenceName 
  93.                                                       ' at ' . __FILE__ . ' in ' . __FUNCTION__ . ' with the message: ' .
  94.                                                       $e->getMessage());
  95.             }
  96.         }
  97.         return $value;
  98.     }
  99.     /**
  100.      * Checks if there's a sequence that exists.
  101.      *
  102.      * @param  string $seqName     The sequence name to verify.
  103.      * @return bool   $tableExists The value if the table exists or not
  104.      * @access private
  105.      */
  106.     public function checkSequence($seqName)
  107.     {
  108.         $query 'SELECT COUNT(1) FROM ' $seqName;
  109.         try {
  110.             $this->conn->execute($query);
  111.         catch (Doctrine_Connection_Exception $e{
  112.             if ($e->getPortableCode(== Doctrine::ERR_NOSUCHTABLE{
  113.                 return false;
  114.             }
  115.         }
  116.         return true;
  117.     }
  118.  
  119.     /**
  120.      * Returns the autoincrement ID if supported or $id or fetches the current
  121.      * ID in a sequence called: $table.(empty($field) ? '' : '_'.$field)
  122.      *
  123.      * @param   string  name of the table into which a new row was inserted
  124.      * @param   string  name of the field into which a new row was inserted
  125.      */
  126.     public function lastInsertId($table null$field null)
  127.     {
  128.         $serverInfo $this->conn->getServerVersion();
  129.         if (is_array($serverInfo)
  130.             && is_null($serverInfo['major'])
  131.             && $serverInfo['major'>= 8{
  132.  
  133.             $query 'SELECT SCOPE_IDENTITY()';
  134.  
  135.         else {
  136.             $query 'SELECT @@IDENTITY';
  137.         }
  138.  
  139.         return $this->conn->fetchOne($query);
  140.     }
  141.     /**
  142.      * Returns the current id of a sequence
  143.      *
  144.      * @param string $seqName   name of the sequence
  145.      *
  146.      * @return integer          current id in the given sequence
  147.      */
  148.     public function currId($seqName)
  149.     {
  150.         $this->warnings['database does not support getting current
  151.             sequence value, the sequence value was incremented';
  152.         return $this->nextId($seqName);
  153.     }
  154. }