Source for file Driver.php

Documentation is available at Driver.php

  1. <?php
  2. /*
  3.  *  $Id$
  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_Module');
  22. /**
  23.  * Doctrine_Expression_Driver
  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$
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     public function getIdentifier($column)
  35.     {
  36.         return $column;
  37.     }
  38.     public function getIdentifiers($columns)
  39.     {
  40.         return $columns;
  41.     }
  42.     /**
  43.      * regexp
  44.      * returns the regular expression operator
  45.      *
  46.      * @return string 
  47.      */
  48.     public function regexp()
  49.     {
  50.         throw new Doctrine_Expression_Exception('Regular expression operator is not supported by this database driver.');
  51.     }
  52.     /**
  53.      * Returns the average value of a column
  54.      *
  55.      * @param string $column    the column to use
  56.      * @return string           generated sql including an AVG aggregate function
  57.      */
  58.     public function avg($column)
  59.     {
  60.         $column $this->getIdentifier($column);
  61.         return 'AVG(' .  $column ')';
  62.     }
  63.  
  64.     /**
  65.      * Returns the number of rows (without a NULL value) of a column
  66.      *
  67.      * If a '*' is used instead of a column the number of selected rows
  68.      * is returned.
  69.      *
  70.      * @param string|integer$column    the column to use
  71.      * @return string                   generated sql including a COUNT aggregate function
  72.      */
  73.     public function count($column)
  74.     {
  75.         $column $this->getIdentifier($column);
  76.         return 'COUNT(' $column ')';
  77.     }
  78.  
  79.     /**
  80.      * Returns the highest value of a column
  81.      *
  82.      * @param string $column    the column to use
  83.      * @return string           generated sql including a MAX aggregate function
  84.      */
  85.     public function max($column)
  86.     {
  87.         $column $this->getIdentifier($column);
  88.         return 'MAX(' $column ')';
  89.     }
  90.  
  91.     /**
  92.      * Returns the lowest value of a column
  93.      *
  94.      * @param string $column the column to use
  95.      * @return string 
  96.      */
  97.     public function min($column)
  98.     {
  99.         $column $this->getIdentifier($column);
  100.         return 'MIN(' $column ')';
  101.     }
  102.  
  103.     /**
  104.      * Returns the total sum of a column
  105.      *
  106.      * @param string $column the column to use
  107.      * @return string 
  108.      */
  109.     public function sum($column)
  110.     {
  111.         $column $this->getIdentifier($column);
  112.         return 'SUM(' $column ')';
  113.     }
  114.  
  115.     // scalar functions
  116.  
  117.     /**
  118.      * Returns the md5 sum of a field.
  119.      *
  120.      * Note: Not SQL92, but common functionality
  121.      *
  122.      * @return string 
  123.      */
  124.     public function md5($column)
  125.     {
  126.         $column $this->getIdentifier($column);
  127.         return 'MD5(' $column ')';
  128.     }
  129.  
  130.     /**
  131.      * Returns the length of a text field.
  132.      *
  133.      * @param string $expression1 
  134.      * @param string $expression2 
  135.      * @return string 
  136.      */
  137.     public function length($column)
  138.     {
  139.         $column $this->getIdentifier($column);
  140.         return 'LENGTH(' $column ')';
  141.     }
  142.  
  143.     /**
  144.      * Rounds a numeric field to the number of decimals specified.
  145.      *
  146.      * @param string $expression1 
  147.      * @param string $expression2 
  148.      * @return string 
  149.      */
  150.     public function round($column$decimals 0)
  151.     {
  152.         $column $this->getIdentifier($column);
  153.  
  154.         return 'ROUND(' $column ', ' $decimals ')';
  155.     }
  156.  
  157.     /**
  158.      * Returns the remainder of the division operation
  159.      * $expression1 / $expression2.
  160.      *
  161.      * @param string $expression1 
  162.      * @param string $expression2 
  163.      * @return string 
  164.      */
  165.     public function mod($expression1$expression2)
  166.     {
  167.         $expression1 $this->getIdentifier($expression1);
  168.         $expression2 $this->getIdentifier($expression2);
  169.         return 'MOD(' $expression1 ', ' $expression2 ')';
  170.     }
  171.  
  172.     /**
  173.      * trim
  174.      * returns the string $str with leading and proceeding space characters removed
  175.      *
  176.      * @param string $str       literal string or column name
  177.      * @return string 
  178.      */
  179.     public function trim($str)
  180.     {
  181.         return 'TRIM(' $str ')';
  182.     }
  183.  
  184.     /**
  185.      * rtrim
  186.      * returns the string $str with proceeding space characters removed
  187.      *
  188.      * @param string $str       literal string or column name
  189.      * @return string 
  190.      */
  191.     public function rtrim($str)
  192.     {
  193.         return 'RTRIM(' $str ')';
  194.     }
  195.  
  196.     /**
  197.      * ltrim
  198.      * returns the string $str with leading space characters removed
  199.      *
  200.      * @param string $str       literal string or column name
  201.      * @return string 
  202.      */
  203.     public function ltrim($str)
  204.     {
  205.         return 'LTRIM(' $str ')';
  206.     }
  207.     /**
  208.      * upper
  209.      * Returns the string $str with all characters changed to
  210.      * uppercase according to the current character set mapping.
  211.      *
  212.      * @param string $str       literal string or column name
  213.      * @return string 
  214.      */
  215.     public function upper($str)
  216.     {
  217.         return 'UPPER(' $str ')';
  218.     }
  219.     /**
  220.      * lower
  221.      * Returns the string $str with all characters changed to
  222.      * lowercase according to the current character set mapping.
  223.      *
  224.      * @param string $str       literal string or column name
  225.      * @return string 
  226.      */
  227.     public function lower($str)
  228.     {
  229.         return 'LOWER(' $str ')';
  230.     }
  231.     /**
  232.      * locate
  233.      * returns the position of the first occurrence of substring $substr in string $str
  234.      *
  235.      * @param string $substr    literal string to find
  236.      * @param string $str       literal string
  237.      * @return integer 
  238.      */
  239.     public function locate($str$substr)
  240.     {
  241.         return 'LOCATE(' $str ', ' $substr ')';
  242.     }
  243.     /**
  244.      * Returns the current system date.
  245.      *
  246.      * @return string 
  247.      */
  248.     public function now()
  249.     {
  250.         return 'NOW()';
  251.     }
  252.     /**
  253.      * soundex
  254.      * Returns a string to call a function to compute the
  255.      * soundex encoding of a string
  256.      *
  257.      * The string "?000" is returned if the argument is NULL.
  258.      *
  259.      * @param string $value 
  260.      * @return string   SQL soundex function with given parameter
  261.      */
  262.     public function soundex($value)
  263.     {
  264.         throw new Doctrine_Expression_Exception('SQL soundex function not supported by this driver.');
  265.     }
  266.     /**
  267.      * return string to call a function to get a substring inside an SQL statement
  268.      *
  269.      * Note: Not SQL92, but common functionality.
  270.      *
  271.      * SQLite only supports the 2 parameter variant of this function
  272.      *
  273.      * @param string $value         an sql string literal or column name/alias
  274.      * @param integer $position     where to start the substring portion
  275.      * @param integer $length       the substring portion length
  276.      * @return string               SQL substring function with given parameters
  277.      */
  278.     public function substring($value$from$len null)
  279.     {
  280.         $value $this->getIdentifier($value);
  281.         if ($len === null)
  282.             return 'SUBSTRING(' $value ' FROM ' $from ')';
  283.         else {
  284.             $len $this->getIdentifier($len);
  285.             return 'SUBSTRING(' $value ' FROM ' $from ' FOR ' $len ')';
  286.         }
  287.     }
  288.     /**
  289.      * Returns a series of strings concatinated
  290.      *
  291.      * concat() accepts an arbitrary number of parameters. Each parameter
  292.      * must contain an expression or an array with expressions.
  293.      *
  294.      * @param string|array(string)strings that will be concatinated.
  295.      */
  296.     public function concat()
  297.     {
  298.         $args func_get_args();
  299.  
  300.         return 'CONCAT(' join(', '(array) $args')';
  301.     }
  302.     /**
  303.      * Returns the SQL for a logical not.
  304.      *
  305.      * Example:
  306.      * <code>
  307.      * $q = new Doctrine_Query();
  308.      * $e = $q->expr;
  309.      * $q->select('*')->from('table')
  310.      *   ->where($e->eq('id', $e->not('null'));
  311.      * </code>
  312.      *
  313.      * @return string a logical expression
  314.      */
  315.     public function not($expression)
  316.     {
  317.         $expression $this->getIdentifier($expression);
  318.         return 'NOT(' $expression ')';
  319.     }
  320.     /**
  321.      * Returns the SQL to perform the same mathematical operation over an array
  322.      * of values or expressions.
  323.      *
  324.      * basicMath() accepts an arbitrary number of parameters. Each parameter
  325.      * must contain a value or an expression or an array with values or
  326.      * expressions.
  327.      *
  328.      * @param string $type the type of operation, can be '+', '-', '*' or '/'.
  329.      * @param string|array(string)
  330.      * @return string an expression
  331.      */
  332.     private function basicMath($typearray $args)
  333.     {
  334.         $elements $this->getIdentifiers($args);
  335.         if (count($elements1{
  336.             return '';
  337.         }
  338.         if (count($elements== 1{
  339.             return $elements[0];
  340.         else {
  341.             return '(' implode(' ' $type ' '$elements')';
  342.         }
  343.     }
  344.     /**
  345.      * Returns the SQL to add values or expressions together.
  346.      *
  347.      * add() accepts an arbitrary number of parameters. Each parameter
  348.      * must contain a value or an expression or an array with values or
  349.      * expressions.
  350.      *
  351.      * Example:
  352.      * <code>
  353.      * $q = new Doctrine_Query();
  354.      * $e = $q->expr;
  355.      *
  356.      * $q->select('u.*')
  357.      *   ->from('User u')
  358.      *   ->where($e->eq($e->add('id', 2), 12));
  359.      * </code>
  360.      *
  361.      * @param string|array(string)
  362.      * @return string an expression
  363.      */
  364.     public function add(array $args)
  365.     {
  366.         return $this->basicMath('+'$args);
  367.     
  368.  
  369.     /**
  370.      * Returns the SQL to subtract values or expressions from eachother.
  371.      *
  372.      * subtract() accepts an arbitrary number of parameters. Each parameter
  373.      * must contain a value or an expression or an array with values or
  374.      * expressions.
  375.      *
  376.      * Example:
  377.      * <code>
  378.      * $q = new Doctrine_Query();
  379.      * $e = $q->expr;
  380.      *
  381.      * $q->select('u.*')
  382.      *   ->from('User u')
  383.      *   ->where($e->eq($e->sub('id', 2), 12));
  384.      * </code>
  385.      *
  386.      * @param string|array(string)
  387.      * @return string an expression
  388.      */
  389.     public function sub(array $args)
  390.     {
  391.         return $this->basicMath('-'$args );
  392.     
  393.  
  394.     /**
  395.      * Returns the SQL to multiply values or expressions by eachother.
  396.      *
  397.      * multiply() accepts an arbitrary number of parameters. Each parameter
  398.      * must contain a value or an expression or an array with values or
  399.      * expressions.
  400.      *
  401.      * Example:
  402.      * <code>
  403.      * $q = new Doctrine_Query();
  404.      * $e = $q->expr;
  405.      *
  406.      * $q->select('u.*')
  407.      *   ->from('User u')
  408.      *   ->where($e->eq($e->mul('id', 2), 12));
  409.      * </code>
  410.      *
  411.      * @param string|array(string)
  412.      * @return string an expression
  413.      */
  414.     public function mul(array $args)
  415.     {
  416.         return $this->basicMath('*'$args);
  417.     
  418.  
  419.     /**
  420.      * Returns the SQL to divide values or expressions by eachother.
  421.      *
  422.      * divide() accepts an arbitrary number of parameters. Each parameter
  423.      * must contain a value or an expression or an array with values or
  424.      * expressions.
  425.      *
  426.      * Example:
  427.      * <code>
  428.      * $q = new Doctrine_Query();
  429.      * $e = $q->expr;
  430.      *
  431.      * $q->select('u.*')
  432.      *   ->from('User u')
  433.      *   ->where($e->eq($e->div('id', 2), 12));
  434.      * </code>
  435.      *
  436.      * @param string|array(string)
  437.      * @return string an expression
  438.      */
  439.     public function div(array $args)
  440.     {
  441.         return $this->basicMath('/'$args);
  442.     
  443.  
  444.     /**
  445.      * Returns the SQL to check if two values are equal.
  446.      *
  447.      * Example:
  448.      * <code>
  449.      * $q = new Doctrine_Query();
  450.      * $q->select('u.*')
  451.      *   ->from('User u')
  452.      *   ->where($q->expr->eq('id', 1));
  453.      * </code>
  454.      *
  455.      * @param string $value1 logical expression to compare
  456.      * @param string $value2 logical expression to compare with
  457.      * @return string logical expression
  458.      */
  459.     public function eq($value1$value2)
  460.     {
  461.         $value1 $this->getIdentifier($value1);
  462.         $value2 $this->getIdentifier($value2);
  463.         return $value1 ' = ' $value2;
  464.     }
  465.  
  466.     /**
  467.      * Returns the SQL to check if two values are unequal.
  468.      *
  469.      * Example:
  470.      * <code>
  471.      * $q = new Doctrine_Query();
  472.      * $q->select('u.*')
  473.      *   ->from('User u')
  474.      *   ->where($q->expr->neq('id', 1));
  475.      * </code>
  476.      *
  477.      * @param string $value1 logical expression to compare
  478.      * @param string $value2 logical expression to compare with
  479.      * @return string logical expression
  480.      */
  481.     public function neq($value1$value2)
  482.     {
  483.         $value1 $this->getIdentifier($value1);
  484.         $value2 $this->getIdentifier($value2);
  485.         return $value1 ' <> ' $value2;
  486.     }
  487.  
  488.     /**
  489.      * Returns the SQL to check if one value is greater than another value.
  490.      *
  491.      * Example:
  492.      * <code>
  493.      * $q = new Doctrine_Query();
  494.      * $q->select('u.*')
  495.      *   ->from('User u')
  496.      *   ->where($q->expr->gt('id', 1));
  497.      * </code>
  498.      *
  499.      * @param string $value1 logical expression to compare
  500.      * @param string $value2 logical expression to compare with
  501.      * @return string logical expression
  502.      */
  503.     public function gt($value1$value2)
  504.     {
  505.         $value1 $this->getIdentifier($value1);
  506.         $value2 $this->getIdentifier($value2);
  507.         return $value1 ' > ' $value2;
  508.     }
  509.  
  510.     /**
  511.      * Returns the SQL to check if one value is greater than or equal to
  512.      * another value.
  513.      *
  514.      * Example:
  515.      * <code>
  516.      * $q = new Doctrine_Query();
  517.      * $q->select('u.*')
  518.      *   ->from('User u')
  519.      *   ->where($q->expr->gte('id', 1));
  520.      * </code>
  521.      *
  522.      * @param string $value1 logical expression to compare
  523.      * @param string $value2 logical expression to compare with
  524.      * @return string logical expression
  525.      */
  526.     public function gte($value1$value2)
  527.     {
  528.         $value1 $this->getIdentifier($value1);
  529.         $value2 $this->getIdentifier($value2);
  530.         return $value1 ' >= ' $value2;
  531.     }
  532.  
  533.     /**
  534.      * Returns the SQL to check if one value is less than another value.
  535.      *
  536.      * Example:
  537.      * <code>
  538.      * $q = new Doctrine_Query();
  539.      * $q->select('u.*')
  540.      *   ->from('User u')
  541.      *   ->where($q->expr->lt('id', 1));
  542.      * </code>
  543.      *
  544.      * @param string $value1        logical expression to compare
  545.      * @param string $value2        logical expression to compare with
  546.      * @return string logical expression
  547.      */
  548.     public function lt($value1$value2)
  549.     {
  550.         $value1 $this->getIdentifier($value1);
  551.         $value2 $this->getIdentifier($value2);
  552.         return $value1 ' < ' $value2;
  553.     }
  554.  
  555.     /**
  556.      * Returns the SQL to check if one value is less than or equal to
  557.      * another value.
  558.      *
  559.      * Example:
  560.      * <code>
  561.      * $q = new Doctrine_Query();
  562.      * $q->select('u.*')
  563.      *   ->from('User u')
  564.      *   ->where($q->expr->lte('id', 1));
  565.      * </code>
  566.      *
  567.      * @param string $value1        logical expression to compare
  568.      * @param string $value2        logical expression to compare with
  569.      * @return string logical expression
  570.      */
  571.     public function lte($value1$value2)
  572.     {
  573.         $value1 $this->getIdentifier($value1);
  574.         $value2 $this->getIdentifier($value2);
  575.         return $value1 ' <= ' $value2;
  576.     }
  577.  
  578.     /**
  579.      * Returns the SQL to check if a value is one in a set of
  580.      * given values..
  581.      *
  582.      * in() accepts an arbitrary number of parameters. The first parameter
  583.      * must always specify the value that should be matched against. Successive
  584.      * must contain a logical expression or an array with logical expressions.
  585.      * These expressions will be matched against the first parameter.
  586.      *
  587.      * Example:
  588.      * <code>
  589.      * $q = new Doctrine_Query();
  590.      * $q->select('u.*')
  591.      *   ->from('User u')
  592.      *   ->where($q->expr->in( 'id', array(1,2,3)));
  593.      * </code>
  594.      *
  595.      * @param string $column        the value that should be matched against
  596.      * @param string|array(string) values that will be matched against $column
  597.      * @return string logical expression
  598.      */
  599.     public function in($column$values)
  600.     {
  601.         if is_array($values)) {
  602.             $values array($values);
  603.         }
  604.         $values $this->getIdentifiers($values);
  605.         $column $this->getIdentifier($column);
  606.  
  607.         if (count($values== 0{
  608.             throw new Doctrine_Expression_Exception('Values array for IN operator should not be empty.');
  609.         }
  610.         return $column ' IN (' implode(', '$values')';
  611.     }
  612.     /**
  613.      * Returns SQL that checks if a expression is null.
  614.      *
  615.      * Example:
  616.      * <code>
  617.      * $q = new Doctrine_Query();
  618.      * $q->select('u.*')
  619.      *   ->from('User u')
  620.      *   ->where($q->expr->isNull('id'));
  621.      * </code>
  622.      *
  623.      * @param string $expression the expression that should be compared to null
  624.      * @return string logical expression
  625.      */
  626.     public function isNull($expression)
  627.     {
  628.         $expression $this->getIdentifier($expression);
  629.         return $expression ' IS NULL';
  630.     }
  631.     /**
  632.      * Returns SQL that checks if a expression is not null.
  633.      *
  634.      * Example:
  635.      * <code>
  636.      * $q = new Doctrine_Query();
  637.      * $q->select('u.*')
  638.      *   ->from('User u')
  639.      *   ->where($q->expr->isNotNull('id'));
  640.      * </code>
  641.      *
  642.      * @param string $expression the expression that should be compared to null
  643.      * @return string logical expression
  644.      */
  645.     public function isNotNull($expression)
  646.     {
  647.         $expression $this->getIdentifier($expression);
  648.         return $expression ' IS NOT NULL';
  649.     }
  650.     /**
  651.      * Returns SQL that checks if an expression evaluates to a value between
  652.      * two values.
  653.      *
  654.      * The parameter $expression is checked if it is between $value1 and $value2.
  655.      *
  656.      * Note: There is a slight difference in the way BETWEEN works on some databases.
  657.      * http://www.w3schools.com/sql/sql_between.asp. If you want complete database
  658.      * independence you should avoid using between().
  659.      *
  660.      * Example:
  661.      * <code>
  662.      * $q = new Doctrine_Query();
  663.      * $q->select('u.*')
  664.      *   ->from('User u')
  665.      *   ->where($q->expr->between('id', 1, 5));
  666.      * </code>
  667.      *
  668.      * @param string $expression the value to compare to
  669.      * @param string $value1 the lower value to compare with
  670.      * @param string $value2 the higher value to compare with
  671.      * @return string logical expression
  672.      */
  673.     public function between($expression$value1$value2)
  674.     {
  675.         $expression $this->getIdentifier($expression);
  676.         $value1 $this->getIdentifier($value1);
  677.         $value2 $this->getIdentifier($value2);
  678.         return $expression ' BETWEEN ' .$value1 ' AND ' $value2;
  679.     }
  680.     /**
  681.      * Returns global unique identifier
  682.      *
  683.      * @return string to get global unique identifier
  684.      */
  685.     public function guid()
  686.     {
  687.         throw new Doctrine_Expression_Exception('method not implemented');
  688.     }
  689.     /**
  690.      * returns arcus cosine SQL string
  691.      *
  692.      * @return string 
  693.      */
  694.     public function acos($value)
  695.     {
  696.         return 'ACOS(' $value ')';
  697.     }
  698.     /**
  699.      * __call
  700.      *
  701.      * for all native RDBMS functions the function name itself is returned
  702.      */
  703.     public function __call($m$a
  704.     {
  705.         if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITYDoctrine::PORTABILITY_EXPR{
  706.             throw new Doctrine_Expression_Exception('Unknown expression ' $m);
  707.         }
  708.         return $m '(' implode(', '$a')';
  709.     }
  710. }