Class: Doctrine_Expression_Mysql

Source Location: /Doctrine/Expression/Mysql.php

Class Doctrine_Expression_Mysql

Class Overview

Doctrine_Expression_Mysql

Located in /Doctrine/Expression/Mysql.php [line 33]

Doctrine_Connection_Module
   |
   --Doctrine_Expression_Driver
      |
      --Doctrine_Expression_Mysql
Author(s): Information Tags:
Version:  $Revision: 1917 $
Link:  www.phpdoctrine.com
Since:  1.0
License:  LGPL

Methods

[ Top ]
Inherited Properties, Constants, and Methods
Inherited Properties Inherited Methods Inherited Constants

Inherited From Doctrine_Connection_Module

Doctrine_Connection_Module::$conn
Doctrine_Connection_Module::$moduleName

Inherited From Doctrine_Expression_Driver

Doctrine_Expression_Driver::acos()
returns arcus cosine SQL string
Doctrine_Expression_Driver::add()
Returns the SQL to add values or expressions together.
Doctrine_Expression_Driver::avg()
Returns the average value of a column
Doctrine_Expression_Driver::basicMath()
Returns the SQL to perform the same mathematical operation over an array of values or expressions.
Doctrine_Expression_Driver::between()
Returns SQL that checks if an expression evaluates to a value between two values.
Doctrine_Expression_Driver::concat()
Returns a series of strings concatinated
Doctrine_Expression_Driver::count()
Returns the number of rows (without a NULL value) of a column
Doctrine_Expression_Driver::div()
Returns the SQL to divide values or expressions by eachother.
Doctrine_Expression_Driver::eq()
Returns the SQL to check if two values are equal.
Doctrine_Expression_Driver::getIdentifier()
Doctrine_Expression_Driver::getIdentifiers()
Doctrine_Expression_Driver::gt()
Returns the SQL to check if one value is greater than another value.
Doctrine_Expression_Driver::gte()
Returns the SQL to check if one value is greater than or equal to another value.
Doctrine_Expression_Driver::guid()
Returns global unique identifier
Doctrine_Expression_Driver::in()
Returns the SQL to check if a value is one in a set of given values..
Doctrine_Expression_Driver::isNotNull()
Returns SQL that checks if a expression is not null.
Doctrine_Expression_Driver::isNull()
Returns SQL that checks if a expression is null.
Doctrine_Expression_Driver::length()
Returns the length of a text field.
Doctrine_Expression_Driver::locate()
locate returns the position of the first occurrence of substring $substr in string $str
Doctrine_Expression_Driver::lower()
lower Returns the string $str with all characters changed to lowercase according to the current character set mapping.
Doctrine_Expression_Driver::lt()
Returns the SQL to check if one value is less than another value.
Doctrine_Expression_Driver::lte()
Returns the SQL to check if one value is less than or equal to another value.
Doctrine_Expression_Driver::ltrim()
ltrim returns the string $str with leading space characters removed
Doctrine_Expression_Driver::max()
Returns the highest value of a column
Doctrine_Expression_Driver::md5()
Returns the md5 sum of a field.
Doctrine_Expression_Driver::min()
Returns the lowest value of a column
Doctrine_Expression_Driver::mod()
Returns the remainder of the division operation $expression1 / $expression2.
Doctrine_Expression_Driver::mul()
Returns the SQL to multiply values or expressions by eachother.
Doctrine_Expression_Driver::neq()
Returns the SQL to check if two values are unequal.
Doctrine_Expression_Driver::not()
Returns the SQL for a logical not.
Doctrine_Expression_Driver::now()
Returns the current system date.
Doctrine_Expression_Driver::regexp()
regexp returns the regular expression operator
Doctrine_Expression_Driver::round()
Rounds a numeric field to the number of decimals specified.
Doctrine_Expression_Driver::rtrim()
rtrim returns the string $str with proceeding space characters removed
Doctrine_Expression_Driver::soundex()
soundex Returns a string to call a function to compute the soundex encoding of a string
Doctrine_Expression_Driver::sub()
Returns the SQL to subtract values or expressions from eachother.
Doctrine_Expression_Driver::substring()
return string to call a function to get a substring inside an SQL statement
Doctrine_Expression_Driver::sum()
Returns the total sum of a column
Doctrine_Expression_Driver::trim()
trim returns the string $str with leading and proceeding space characters removed
Doctrine_Expression_Driver::upper()
upper Returns the string $str with all characters changed to uppercase according to the current character set mapping.
Doctrine_Expression_Driver::__call()
__call

Inherited From Doctrine_Connection_Module

Doctrine_Connection_Module::__construct()
Doctrine_Connection_Module::getConnection()
getConnection returns the connection object this module uses
Doctrine_Connection_Module::getModuleName()
getModuleName returns the name of this module

[ Top ]
Method Summary
string   guid()   Returns global unique identifier
string   matchPattern()   build a pattern matching string
string   random()   return string to call a function to get random value inside an SQL statement
string   regexp()   returns the regular expression operator

[ Top ]
Properties
Methods
guid  [line 106]

  string guid( )

Returns global unique identifier


API Tags:
Return:  to get global unique identifier
Access:  public


Redefinition of:
Doctrine_Expression_Driver::guid()
Returns global unique identifier

[ Top ]
matchPattern  [line 70]

  string matchPattern( array $pattern, [string $operator = null], [string $field = null]  )

build a pattern matching string

EXPERIMENTAL

WARNING: this function is experimental and may change signature at any time until labelled as non-experimental

Parameters:
array   $pattern:  even keys are strings, odd are patterns (% and _)
string   $operator:  optional pattern operator (LIKE, ILIKE and maybe others in the future)
string   $field:  optional field name that is being matched against (might be required when emulating ILIKE)

API Tags:
Return:  SQL pattern
Access:  public


[ Top ]
random  [line 49]

  string random( )

return string to call a function to get random value inside an SQL statement


API Tags:
Return:  to generate float between 0 and 1
Access:  public


[ Top ]
regexp  [line 40]

  string regexp( )

returns the regular expression operator


API Tags:
Access:  public


Redefinition of:
Doctrine_Expression_Driver::regexp()
regexp returns the regular expression operator

[ Top ]