Source for file Oracle.php

Documentation is available at Oracle.php

  1. <?php
  2. /*
  3.  *  $Id: Oracle.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 a series of strings concatinated
  36.      *
  37.      * concat() accepts an arbitrary number of parameters. Each parameter
  38.      * must contain an expression
  39.      *
  40.      * @param string $arg1, $arg2 ... $argN     strings that will be concatinated.
  41.      * @return string 
  42.      */
  43.     public function concat()
  44.     {
  45.         $args func_get_args();
  46.  
  47.         return join(' || ' $args);
  48.     }
  49.     /**
  50.      * return string to call a function to get a substring inside an SQL statement
  51.      *
  52.      * Note: Not SQL92, but common functionality.
  53.      *
  54.      * @param string $value         an sql string literal or column name/alias
  55.      * @param integer $position     where to start the substring portion
  56.      * @param integer $length       the substring portion length
  57.      * @return string               SQL substring function with given parameters
  58.      */
  59.     public function substring($value$position$length null)
  60.     {
  61.         if ($length !== null)
  62.             return "SUBSTR($value$position$length)";
  63.  
  64.         return "SUBSTR($value$position)";
  65.     }
  66.     /**
  67.      * Return string to call a variable with the current timestamp inside an SQL statement
  68.      * There are three special variables for current date and time:
  69.      * - CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
  70.      * - CURRENT_DATE (date, DATE type)
  71.      * - CURRENT_TIME (time, TIME type)
  72.      *
  73.      * @return string to call a variable with the current timestamp
  74.      */
  75.     public function now($type 'timestamp')
  76.     {
  77.         switch ($type{
  78.             case 'date':
  79.             case 'time':
  80.             case 'timestamp':
  81.             default:
  82.                 return 'TO_CHAR(CURRENT_TIMESTAMP, \'YYYY-MM-DD HH24:MI:SS\')';
  83.         }
  84.     }
  85.     /**
  86.      * random
  87.      *
  88.      * @return string           an oracle SQL string that generates a float between 0 and 1
  89.      */
  90.     public function random()
  91.     {
  92.         return 'dbms_random.value';
  93.     }
  94.     /**
  95.      * Returns global unique identifier
  96.      *
  97.      * @return string to get global unique identifier
  98.      */
  99.     public function guid()
  100.     {
  101.         return 'SYS_GUID()';
  102.     }
  103. }