added RTRIM function support
This commit is contained in:
parent
e96617bb8c
commit
54d6296087
1 changed files with 14 additions and 0 deletions
|
@ -169,6 +169,7 @@ class Doctrine_Expression_Driver extends Doctrine_Connection_Module
|
||||||
$expression2 = $this->getIdentifier($expression2);
|
$expression2 = $this->getIdentifier($expression2);
|
||||||
return 'MOD(' . $expression1 . ', ' . $expression2 . ')';
|
return 'MOD(' . $expression1 . ', ' . $expression2 . ')';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* trim
|
* trim
|
||||||
* returns the string $str with leading and proceeding space characters removed
|
* returns the string $str with leading and proceeding space characters removed
|
||||||
|
@ -180,6 +181,19 @@ class Doctrine_Expression_Driver extends Doctrine_Connection_Module
|
||||||
{
|
{
|
||||||
return 'TRIM(' . $str . ')';
|
return 'TRIM(' . $str . ')';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* rtrim
|
||||||
|
* returns the string $str with proceeding space characters removed
|
||||||
|
*
|
||||||
|
* @param string $str literal string or column name
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function rtrim($str)
|
||||||
|
{
|
||||||
|
return 'RTRIM(' . $str . ')';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ltrim
|
* ltrim
|
||||||
* returns the string $str with leading space characters removed
|
* returns the string $str with leading space characters removed
|
||||||
|
|
Loading…
Add table
Reference in a new issue