ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
MDB2_Driver_Function_mysql Class Reference
+ Inheritance diagram for MDB2_Driver_Function_mysql:
+ Collaboration diagram for MDB2_Driver_Function_mysql:

Public Member Functions

executeStoredProc ($name, $params=null, $types=null, $result_class=true, $result_wrap_class=false)
 Execute a stored procedure and return any results.
 concat ($value1, $value2)
 Returns string to concatenate two or more string parameters.
 guid ()
 Returns global unique identifier.
- Public Member Functions inherited from MDB2_Driver_Function_Common
 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
 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

Detailed Description

Definition at line 57 of file mysql.php.

Member Function Documentation

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

Reimplemented from MDB2_Driver_Function_Common.

Definition at line 98 of file mysql.php.

{
$args = func_get_args();
return "CONCAT(".implode(', ', $args).")";
}
& 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$namestring that identifies the function to execute
mixed$paramsarray that contains the paramaters to pass the stored proc
mixed$typesarray that contains the types of the columns in the result set
mixed$result_classstring which specifies which result class to use
mixed$result_wrap_classstring which specifies which class to wrap results in
Returns
mixed a result handle or MDB2_OK on success, a MDB2 error on failure public

Reimplemented from MDB2_Driver_Function_Common.

Definition at line 74 of file mysql.php.

References $params, $query, MDB2_Module_Common\getDBInstance(), and PEAR\isError().

{
$db =& $this->getDBInstance();
if (PEAR::isError($db)) {
return $db;
}
$query = 'CALL '.$name;
$query .= $params ? '('.implode(', ', $params).')' : '()';
return $db->query($query, $types, $result_class, $result_wrap_class);
}

+ Here is the call graph for this function:

MDB2_Driver_Function_mysql::guid ( )

Returns global unique identifier.

Returns
string to get global unique identifier public

Reimplemented from MDB2_Driver_Function_Common.

Definition at line 113 of file mysql.php.

{
return 'UUID()';
}

The documentation for this class was generated from the following file: