Database: ezcQueryExpressionOracle
[ ]
[ Oracle_setup ]
[ ]
[ ]
[ ]
[ ]
Class: ezcQueryExpressionOracle
|
The ezcQueryExpressionPgsql class is used to create SQL expression for PostgreSQL. [
source]
This class reimplements the methods that have a different syntax in postgreSQL.
Parents
ezcQueryExpression
|
--ezcQueryExpressionOracle
Method Summary
|
public ezcQueryExpressionOracle |
__construct(
)
Constructs an empty ezcQueryExpression |
|
public string |
concat(
0 )
Returns a series of strings concatinated |
|
public string |
subString(
$value, $from, [$len = null] )
Returns part of a string. |
Inherited Methods
From
ezcQueryExpression :
Methods
__construct
ezcQueryExpressionOracle __construct(
)
Constructs an empty ezcQueryExpression
Redefinition of
concat
string concat(
string|array(string)
0 )
Returns a series of strings concatinated
concat() accepts an arbitrary number of parameters. Each parameter must contain an expression or an array with expressions.
Parameters
| Name |
Type |
Description |
0 |
string|array(string) |
strings that will be concatinated. |
Throws
| Class | Description |
ezcQueryVariableException |
if no parameters are provided |
Redefinition of
subString
string subString(
string
$value, int
$from, [int
$len = null] )
Returns part of a string.
Note: Not SQL92, but common functionality.
Parameters
| Name |
Type |
Description |
$value |
string |
the target $value the string or the string column. |
$from |
int |
extract from this characeter. |
$len |
int |
extract this amount of characters. |
Redefinition of
Last updated: Thu, 01 Nov 2007