Oracle 5.0 Reference Manual page 2800

Table of Contents

Advertisement

Examples
Example 20.381.
<?php
class proxy extends MysqlndUhConnection {
public function stmtInit($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
var_dump($res);
$ret = parent::stmtInit($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
var_dump($ret);
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
$mysqli = new mysqli("localhost", "root", "", "test");
$stmt = $mysqli->prepare("SELECT 1 AS _one FROM DUAL");
$stmt->execute();
$one = NULL;
$stmt->bind_result($one);
$stmt->fetch();
var_dump($one);
?>
The above example will output:
proxy::stmtInit(array (
0 => NULL,
))
resource(19) of type (Mysqlnd Connection)
proxy::stmtInit returns NULL
resource(246) of type (Mysqlnd Prepared Statement (internal only - you must not modify it!))
int(1)
See Also
mysqlnd_uh_set_connection_proxy
mysqli_stmt_init
20.7.8.7.48.
MysqlndUhConnection::storeResult
Copyright 1997-2012 the PHP Documentation Group. [2230]
MysqlndUhConnection::storeResult
Transfers a result set from the last query
Description
public resource MysqlndUhConnection::storeResult(
mysqlnd_connection connection);
Transfers a result set from the last query.
Parameters
connection
Return Values
Resource of type
documentation may also refer to such resources using the alias name mysqlnd_resultset.
Mysqlnd user handler plugin (mysqlnd_uh)
MysqlndUhConnection::stmtInit
Mysqlnd connection handle. Do not modify!
Mysqlnd Resultset (internal only - you must not modify
example
2780
it!). The

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents