Source for file Mysql.php

Documentation is available at Mysql.php

  1. <?php
  2. /*
  3.  *  $Id: Mysql.php 1917 2007-07-01 11:27:45Z 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_Expression_Driver');
  22. /**
  23.  * Doctrine_Expression_Mysql
  24.  *
  25.  * @package     Doctrine
  26.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  27.  * @category    Object Relational Mapping
  28.  * @link        www.phpdoctrine.com
  29.  * @since       1.0
  30.  * @version     $Revision: 1917 $
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     /**
  35.      * returns the regular expression operator
  36.      *
  37.      * @return string 
  38.      */
  39.     public function regexp()
  40.     {
  41.         return 'RLIKE';
  42.     }
  43.     /**
  44.      * return string to call a function to get random value inside an SQL statement
  45.      *
  46.      * @return string to generate float between 0 and 1
  47.      */
  48.     public function random()
  49.     {
  50.         return 'RAND()';
  51.     }
  52.     /**
  53.      * build a pattern matching string
  54.      *
  55.      * EXPERIMENTAL
  56.      *
  57.      * WARNING: this function is experimental and may change signature at
  58.      * any time until labelled as non-experimental
  59.      *
  60.      * @access public
  61.      *
  62.      * @param array $pattern even keys are strings, odd are patterns (% and _)
  63.      * @param string $operator optional pattern operator (LIKE, ILIKE and maybe others in the future)
  64.      * @param string $field optional field name that is being matched against
  65.      *                   (might be required when emulating ILIKE)
  66.      *
  67.      * @return string SQL pattern
  68.      */
  69.     public function matchPattern($pattern$operator null$field null)
  70.     {
  71.         $match '';
  72.         if (!is_null($operator)) {
  73.             $field is_null($field'' $field.' ';
  74.             $operator strtoupper($operator);
  75.             switch ($operator{
  76.                 // case insensitive
  77.                 case 'ILIKE':
  78.                     $match $field.'LIKE ';
  79.                     break;
  80.                 // case sensitive
  81.                 case 'LIKE':
  82.                     $match $field.'LIKE BINARY ';
  83.                     break;
  84.                 default:
  85.                     throw new Doctrine_Expression_Mysql_Exception('not a supported operator type:'$operator);
  86.             }
  87.         }
  88.         $match.= "'";
  89.         foreach ($pattern as $key => $value{
  90.             if ($key 2{
  91.                 $match .= $value;
  92.             else {
  93.                 $match .= $this->conn->escapePattern($this->conn->escape($value));
  94.             }
  95.         }
  96.         $match.= "'";
  97.         $match.= $this->patternEscapeString();
  98.         return $match;
  99.     }
  100.     /**
  101.      * Returns global unique identifier
  102.      *
  103.      * @return string to get global unique identifier
  104.      */
  105.     public function guid()
  106.     {
  107.         return 'UUID()';
  108.     }
  109. }