Oracle 5.0 Reference Manual page 2489

Table of Contents

Advertisement

mysqli_stmt_fetch
mysqli_stmt_bind_param
mysqli_stmt_bind_result
mysqli_stmt_close
20.7.3.10.23. mysqli_stmt::reset,
Copyright 1997-2012 the PHP Documentation Group. [2230]
mysqli_stmt::reset
mysqli_stmt_reset
Resets a prepared statement
Description
Object oriented style
bool mysqli_stmt::reset();
Procedural style
bool mysqli_stmt_reset(
mysqli_stmt stmt);
Resets a prepared statement on client and server to state after prepare.
It resets the statement on the server, data sent using mysqli_stmt_send_long_data, unbuffered
result sets and current errors. It does not clear bindings or stored result sets. Stored result sets will be
cleared when executing the prepared statement (or closing it).
To prepare a statement with another query use function mysqli_stmt_prepare.
Parameters
stmt
Return Values
Returns
TRUE
See Also
mysqli_prepare
20.7.3.10.24. mysqli_stmt::result_metadata,
Copyright 1997-2012 the PHP Documentation Group. [2230]
mysqli_stmt::result_metadata
mysqli_stmt_result_metadata
Returns result set metadata from a prepared statement
Description
Object oriented style
mysqli_result mysqli_stmt::result_metadata();
MySQL Improved Extension (Mysqli)
mysqli_stmt_reset
Procedural style only: A statement identifier returned by
mysqli_stmt_init.
on success or
on failure.
FALSE
mysqli_stmt_result_metadata
2469

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the 5.0 and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Mysql 5.0

Table of Contents