|
| & | executeStoredProc ($name, $params=null, $types=null, $result_class=true, $result_wrap_class=false) |
| | Execute a stored procedure and return any results. More...
|
| |
| | concat ($value1, $value2) |
| | Returns string to concatenate two or more string parameters. More...
|
| |
| | guid () |
| | Returns global unique identifier. More...
|
| |
| & | executeStoredProc ($name, $params=null, $types=null, $result_class=true, $result_wrap_class=false) |
| | Execute a stored procedure and return any results. More...
|
| |
| | functionTable () |
| | return string for internal table used when calling only a function More...
|
| |
| | now ($type='timestamp') |
| | Return string to call a variable with the current timestamp inside an SQL statement There are three special variables for current date and time: More...
|
| |
| | substring ($value, $position=1, $length=null) |
| | return string to call a function to get a substring inside an SQL statement More...
|
| |
| | concat ($value1, $value2) |
| | Returns string to concatenate two or more string parameters. More...
|
| |
| | random () |
| | return string to call a function to get random value inside an SQL statement More...
|
| |
| | lower ($expression) |
| | return string to call a function to lower the case of an expression More...
|
| |
| | upper ($expression) |
| | return string to call a function to upper the case of an expression More...
|
| |
| | guid () |
| | Returns global unique identifier. More...
|
| |
| | __construct ($db_index) |
| | Constructor. More...
|
| |
| | MDB2_Module_Common ($db_index) |
| | PHP 4 Constructor. More...
|
| |
| & | getDBInstance () |
| | Get the instance of MDB2 associated with the module instance. More...
|
| |
Definition at line 57 of file mysql.php.
◆ concat()
| MDB2_Driver_Function_mysql::concat |
( |
|
$value1, |
|
|
|
$value2 |
|
) |
| |
Returns string to concatenate two or more string parameters.
- Parameters
-
| string | $value1 | |
| string | $value2 | |
| string | $values,... | |
- Returns
- string to concatenate two strings public
Definition at line 98 of file mysql.php.
100 $args = func_get_args();
101 return "CONCAT(".implode(
', ', $args).
")";
◆ executeStoredProc()
| & MDB2_Driver_Function_mysql::executeStoredProc |
( |
|
$name, |
|
|
|
$params = null, |
|
|
|
$types = null, |
|
|
|
$result_class = true, |
|
|
|
$result_wrap_class = false |
|
) |
| |
Execute a stored procedure and return any results.
- Parameters
-
| string | $name | string that identifies the function to execute |
| mixed | $params | array that contains the paramaters to pass the stored proc |
| mixed | $types | array that contains the types of the columns in the result set |
| mixed | $result_class | string which specifies which result class to use |
| mixed | $result_wrap_class | string which specifies which class to wrap results in |
- Returns
- mixed a result handle or MDB2_OK on success, a MDB2 error on failure public
Definition at line 74 of file mysql.php.
References $query, MDB2_Module_Common\getDBInstance(), and PEAR\isError().
82 $query .= $params ?
'('.implode(
', ', $params).
')' :
'()';
83 return $db->query(
$query, $types, $result_class, $result_wrap_class);
& getDBInstance()
Get the instance of MDB2 associated with the module instance.
isError($data, $code=null)
Tell whether a value is a PEAR error.
◆ guid()
| MDB2_Driver_Function_mysql::guid |
( |
| ) |
|
Returns global unique identifier.
- Returns
- string to get global unique identifier public
Definition at line 113 of file mysql.php.
The documentation for this class was generated from the following file:
- Services/PEAR/lib/MDB2/Driver/Function/mysql.php