Oracle 5.0 Reference Manual page 2788

Table of Contents

Advertisement

1 => 'SELECT 1',
))
proxy::sendQuery returns true
See Also
mysqlnd_uh_set_connection_proxy
20.7.8.7.38.
MysqlndUhConnection::serverDumpDebugInformation
Copyright 1997-2012 the PHP Documentation Group. [2230]
MysqlndUhConnection::serverDumpDebugInformation
Dump debugging information into the log for the MySQL server
Description
public bool MysqlndUhConnection::serverDumpDebugInformation(
mysqlnd_connection connection);
Dump debugging information into the log for the MySQL server.
Parameters
connection
Return Values
Returns
TRUE
Examples
Example 20.373.
<?php
class proxy extends MysqlndUhConnection {
public function serverDumpDebugInformation($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::serverDumpDebugInformation($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
$mysqli = new mysqli("localhost", "root", "", "test");
$mysqli->dump_debug_info();
?>
The above example will output:
proxy::serverDumpDebugInformation(array (
0 => NULL,
))
proxy::serverDumpDebugInformation returns true
See Also
mysqlnd_uh_set_connection_proxy
Mysqlnd user handler plugin (mysqlnd_uh)
Mysqlnd connection handle. Do not modify!
on success. Otherwise, returns
MysqlndUhConnection::serverDumpDebugInformation
FALSE
2768
example

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents