Source for file Exception.php

Documentation is available at Exception.php

  1. <?php
  2. /*
  3.  *  $Id: Exception.php 1080 2007-02-10 18:17:08Z romanb $
  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_Connection_Exception');
  22. /**
  23.  * Doctrine_Connection_Sqlite_Exception
  24.  *
  25.  * @package     Doctrine
  26.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  27.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  28.  * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
  29.  * @since       1.0
  30.  * @version     $Revision: 1080 $
  31.  * @category    Object Relational Mapping
  32.  * @link        www.phpdoctrine.com
  33.  */
  34. {
  35.     /**
  36.      * @var array $errorRegexps         an array that is used for determining portable
  37.      *                                   error code from a native database error message
  38.      */
  39.     protected static $errorRegexps array(
  40.                               '/^no such table:/'                    => Doctrine::ERR_NOSUCHTABLE,
  41.                               '/^no such index:/'                    => Doctrine::ERR_NOT_FOUND,
  42.                               '/^(table|index) .* already exists$/'  => Doctrine::ERR_ALREADY_EXISTS,
  43.                               '/PRIMARY KEY must be unique/i'        => Doctrine::ERR_CONSTRAINT,
  44.                               '/is not unique/'                      => Doctrine::ERR_CONSTRAINT,
  45.                               '/columns .* are not unique/i'         => Doctrine::ERR_CONSTRAINT,
  46.                               '/uniqueness constraint failed/'       => Doctrine::ERR_CONSTRAINT,
  47.                               '/may not be NULL/'                    => Doctrine::ERR_CONSTRAINT_NOT_NULL,
  48.                               '/^no such column:/'                   => Doctrine::ERR_NOSUCHFIELD,
  49.                               '/column not present in both tables/i' => Doctrine::ERR_NOSUCHFIELD,
  50.                               '/^near ".*": syntax error$/'          => Doctrine::ERR_SYNTAX,
  51.                               '/[0-9]+ values for [0-9]+ columns/i'  => Doctrine::ERR_VALUE_COUNT_ON_ROW,
  52.                               );
  53.     /**
  54.      * This method checks if native error code/message can be
  55.      * converted into a portable code and then adds this
  56.      * portable error code to $portableCode field
  57.      *
  58.      * @param array $errorInfo      error info array
  59.      * @since 1.0
  60.      * @see Doctrine::ERR_* constants
  61.      * @see Doctrine_Connection::$portableCode
  62.      * @return boolean              whether or not the error info processing was successfull
  63.      *                               (the process is successfull if portable error code was found)
  64.      */
  65.     public function processErrorInfo(array $errorInfo)
  66.     {
  67.         foreach (self::$errorRegexps as $regexp => $code{
  68.             if (preg_match($regexp$errorInfo[2])) {
  69.  
  70.                 $this->portableCode = $code;
  71.                 return true;
  72.             }
  73.         }
  74.         return false;
  75.     }
  76. }