MysqlndUhConnection::listMethod

(PECL mysqlnd-uh >= 1.0.0-alpha)

MysqlndUhConnection::listMethodWrapper for assorted list commands

说明

public MysqlndUhConnection::listMethod ( mysqlnd_connection $connection , string $query , string $achtung_wild , string $par1 ) : void

Wrapper for assorted list commands.

Warning

本函数还未编写文档,仅有参数列表。

参数

connection

Mysqlnd connection handle. Do not modify!

query

SHOW command to be executed.

achtung_wild

par1

返回值

返回值

TODO

范例

Example #1 MysqlndUhConnection::listMethod() example

<?php
class proxy extends MysqlndUhConnection {
 public function 
listMethod($res$query$pattern$par1) {
  
printf("%s(%s)\n"__METHOD__var_export(func_get_args(), true));
  
$ret parent::listMethod($res$query$pattern$par1);
  
printf("%s returns %s\n"__METHOD__var_export($rettrue));
  return 
$ret;
 }
}
mysqlnd_uh_set_connection_proxy(new proxy());

$mysql mysql_connect("localhost""root""");
$res mysql_list_dbs($mysql);
printf("num_rows = %d\n"mysql_num_rows($res));
while (
$row mysql_fetch_assoc($res))
 
var_dump($row);
?>

以上例程会输出:

proxy::listMethod(array (
  0 => NULL,
  1 => 'SHOW DATABASES',
  2 => '',
  3 => '',
))
proxy::listMethod returns NULL
num_rows = 6
array(1) {
  ["Database"]=>
  string(18) "information_schema"
}
array(1) {
  ["Database"]=>
  string(5) "mysql"
}
array(1) {
  ["Database"]=>
  string(8) "oxid_new"
}
array(1) {
  ["Database"]=>
  string(7) "phptest"
}
array(1) {
  ["Database"]=>
  string(7) "pushphp"
}
array(1) {
  ["Database"]=>
  string(4) "test"
}

参见

相关文章
php hash 函数 return a list of registered hashing algorithms suitable for hash hmacphp informix 函数 list of informix sql fieldsphp gearmanworker give the worker an identifier so it can be tracked when asking gearmand for the list of available workersphp hyperwave api 函数 returns a list of all logged in usersphp mysqli returns a list of errors from the last command executedphp mysqlnduhconnection returns the auto generated id used in the last queryphp mysqlnduhconnection retrieves information about the most recently executed queryphp mysqlnduhconnection list mysql table fieldsphp mysqlnduhconnection wrapper for assorted list commandsphp mysqlnduhconnection pings a server connection or tries to reconnect if the connection has gone downphp mysqlnduhconnection performs a query on the databasephp mysqlnduhconnection process a response for a basic com * command send to the clientphp mysqlnduhconnection used for establishing secure connections using sslphp 范例 examples on using the ogg // wrapper.php sdo das relational 函数 executes an sql query passed as a prepared statement with a list of values to substitute for placeholders and return the results as a normalised data graphphp soapclient returns list of available soap functionsphp solrquery returns an offset into the list of constraints to be used for paginationphp spldoublylinkedlist checks whether the doubly linked list is emptyphp spldoublylinkedlist prepends the doubly linked list with an elementphp streamwrapper constructs a new stream wrapper
关注编程学问公众号