|
ILIAS
eassessment Revision 61809
|
Inheritance diagram for MDB2_Driver_Function_oci8:
Collaboration diagram for MDB2_Driver_Function_oci8:Public Member Functions | |
| & | executeStoredProc ($name, $params=null, $types=null, $result_class=true, $result_wrap_class=false) |
| Execute a stored procedure and return any results. | |
| functionTable () | |
| return string for internal table used when calling only a function | |
| 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: | |
| substring ($value, $position=1, $length=null) | |
| return string to call a function to get a substring inside an SQL statement | |
| random () | |
| return string to call a function to get random value inside an SQL statement | |
| guid () | |
| Returns global unique identifier. | |
Public Member Functions inherited from MDB2_Driver_Function_Common | |
| concat ($value1, $value2) | |
| Returns string to concatenate two or more string parameters. | |
| lower ($expression) | |
| return string to call a function to lower the case of an expression | |
| upper ($expression) | |
| return string to call a function to upper the case of an expression | |
Public Member Functions inherited from MDB2_Module_Common | |
| __construct ($db_index) | |
| Constructor. | |
| MDB2_Module_Common ($db_index) | |
| PHP 4 Constructor. | |
| & | getDBInstance () |
| Get the instance of MDB2 associated with the module instance. | |
Additional Inherited Members | |
Data Fields inherited from MDB2_Module_Common | |
| $db_index | |
| & MDB2_Driver_Function_oci8::executeStoredProc | ( | $name, | |
$params = null, |
|||
$types = null, |
|||
$result_class = true, |
|||
$result_wrap_class = false |
|||
| ) |
Execute a stored procedure and return any results.
| 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 |
Reimplemented from MDB2_Driver_Function_Common.
Definition at line 72 of file oci8.php.
References $query, MDB2_Module_Common\getDBInstance(), and PEAR\isError().
Here is the call graph for this function:| MDB2_Driver_Function_oci8::functionTable | ( | ) |
return string for internal table used when calling only a function
Reimplemented from MDB2_Driver_Function_Common.
Definition at line 93 of file oci8.php.
| MDB2_Driver_Function_oci8::guid | ( | ) |
Returns global unique identifier.
Reimplemented from MDB2_Driver_Function_Common.
Definition at line 162 of file oci8.php.
| MDB2_Driver_Function_oci8::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:
Reimplemented from MDB2_Driver_Function_Common.
Definition at line 111 of file oci8.php.
References $type.
| MDB2_Driver_Function_oci8::random | ( | ) |
return string to call a function to get random value inside an SQL statement
Reimplemented from MDB2_Driver_Function_Common.
Definition at line 148 of file oci8.php.
| MDB2_Driver_Function_oci8::substring | ( | $value, | |
$position = 1, |
|||
$length = null |
|||
| ) |
return string to call a function to get a substring inside an SQL statement
Reimplemented from MDB2_Driver_Function_Common.
Definition at line 131 of file oci8.php.