Oracle 5.0 Reference Manual page 2776

Table of Contents

Advertisement

}
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"
}
See Also
mysqlnd_uh_set_connection_proxy
mysql_list_dbs
20.7.8.7.27.
MysqlndUhConnection::moreResults
Copyright 1997-2012 the PHP Documentation Group. [2230]
MysqlndUhConnection::moreResults
Check if there are any more query results from a multi query
Description
public bool MysqlndUhConnection::moreResults(
mysqlnd_connection connection);
Check if there are any more query results from a multi query.
Parameters
connection
Return Values
Returns
TRUE
Examples
Example 20.362.
<?php
class proxy extends MysqlndUhConnection {
public function moreResults($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::moreResults($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
Mysqlnd user handler plugin (mysqlnd_uh)
Mysqlnd connection handle. Do not modify!
on success. Otherwise, returns
MysqlndUhConnection::moreResults
FALSE
example
2756

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents