Source for file Sqlite.php

Documentation is available at Sqlite.php

  1. <?php
  2. /*
  3.  *  $Id: Sqlite.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_Sqlite
  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 md5 sum of the data that SQLite's md5() function receives.
  36.      *
  37.      * @param mixed $data 
  38.      * @return string 
  39.      */
  40.     public static function md5Impl($data)
  41.     {
  42.         return md5($data);
  43.     }
  44.     /**
  45.      * Returns the modules of the data that SQLite's mod() function receives.
  46.      *
  47.      * @param integer $dividend 
  48.      * @param integer $divisor 
  49.      * @return string 
  50.      */
  51.     public static function modImpl($dividend$divisor)
  52.     {
  53.         return $dividend $divisor;
  54.     }
  55.  
  56.     /**
  57.      * Returns a concatenation of the data that SQLite's concat() function receives.
  58.      *
  59.      * @return string 
  60.      */
  61.     public static function concatImpl()
  62.     {
  63.         $args func_get_args();
  64.         return join(''$args);
  65.     }
  66.     /**
  67.      * locate
  68.      * returns the position of the first occurrence of substring $substr in string $str that
  69.      * SQLite's locate() function receives
  70.      *
  71.      * @param string $substr    literal string to find
  72.      * @param string $str       literal string
  73.      * @return string 
  74.      */
  75.     public static function locateImpl($substr$str)
  76.     {
  77.         return strpos($str$substr);
  78.     }
  79.     public static function sha1Impl($str)
  80.     {
  81.         return sha1($str);
  82.     }
  83.     public static function ltrimImpl($str)
  84.     {
  85.         return ltrim($str);
  86.     }
  87.     public static function rtrimImpl($str)
  88.     {
  89.         return rtrim($str);
  90.     }
  91.     public static function trimImpl($str)
  92.     {
  93.         return trim($str);
  94.     }
  95.     /**
  96.      * returns the regular expression operator
  97.      *
  98.      * @return string 
  99.      */
  100.     public function regexp()
  101.     {
  102.         return 'RLIKE';
  103.     }
  104.     /**
  105.      * soundex
  106.      * Returns a string to call a function to compute the
  107.      * soundex encoding of a string
  108.      *
  109.      * The string "?000" is returned if the argument is NULL.
  110.      *
  111.      * @param string $value 
  112.      * @return string   SQL soundex function with given parameter
  113.      */
  114.     public function soundex($value)
  115.     {
  116.         return 'SOUNDEX(' $value ')';
  117.     }
  118.     /**
  119.      * Return string to call a variable with the current timestamp inside an SQL statement
  120.      * There are three special variables for current date and time.
  121.      *
  122.      * @return string       sqlite function as string
  123.      */
  124.     public function now($type 'timestamp')
  125.     {
  126.         switch ($type{
  127.             case 'time':
  128.                 return 'time(\'now\')';
  129.             case 'date':
  130.                 return 'date(\'now\')';
  131.             case 'timestamp':
  132.             default:
  133.                 return 'datetime(\'now\')';
  134.         }
  135.     }
  136.     /**
  137.      * return string to call a function to get random value inside an SQL statement
  138.      *
  139.      * @return string to generate float between 0 and 1
  140.      */
  141.     public function random()
  142.     {
  143.         return '((RANDOM() + 2147483648) / 4294967296)';
  144.     }
  145.     /**
  146.      * return string to call a function to get a substring inside an SQL statement
  147.      *
  148.      * Note: Not SQL92, but common functionality.
  149.      *
  150.      * SQLite only supports the 2 parameter variant of this function
  151.      *
  152.      * @param string $value         an sql string literal or column name/alias
  153.      * @param integer $position     where to start the substring portion
  154.      * @param integer $length       the substring portion length
  155.      * @return string               SQL substring function with given parameters
  156.      */
  157.     public function substring($value$position$length null)
  158.     {
  159.         if ($length !== null{
  160.             return 'SUBSTR(' $value ', ' $position ', ' $length ')';
  161.         }
  162.         return 'SUBSTR(' $value ', ' $position ', LENGTH(' $value '))';
  163.     }
  164. }