mysqli_stmt::get_warnings

(PHP 5 >= 5.1.0, PHP 7) Get result of SHOW WARNINGS object mysqli_stmt::get_warnings ( mysqli_stmt $stmt ) Object oriented style Procedural style object mysqli_stmt_get_warnings ( mysqli_stmt $stmt ) This function is currently not documented; only its argument list is available.

mysqli_stmt::get_result

(PHP 5 >= 5.3.0, PHP 7) Gets a result set from a prepared statement mysqli_result mysqli_stmt::get_result ( void ) Object oriented style Procedural style mysqli_result mysqli_stmt_get_result ( mysqli_stmt $stmt ) Call to return a result set from a prepared statement query. Parameters: stmt Procedural style only: A statement identifier returned by mysqli_stmt_init().

mysqli_stmt::free_result

(PHP 5, PHP 7) Frees stored result memory for the given statement handle void mysqli_stmt::free_result ( void ) Object oriented style Procedural style void mysqli_stmt_free_result ( mysqli_stmt $stmt ) Frees the result memory associated with the statement, which was allocated by mysqli_stmt_store_result(). Parameters: stmt Procedural style only: A statement identifier re

mysqli_stmt::$field_count

(PHP 5, PHP 7) Returns the number of field in the given statement int mysqli_stmt_field_count ( mysqli_stmt $stmt ) Object oriented style int $mysqli_stmt->field_count; Procedural style This function is currently not documented; only its argument list is available.

mysqli_stmt::fetch

(PHP 5, PHP 7) Fetch results from a prepared statement into the bound variables bool mysqli_stmt::fetch ( void ) Object oriented style Procedural style bool mysqli_stmt_fetch ( mysqli_stmt $stmt ) Fetch the result from a prepared statement into the variables bound by mysqli_stmt_bind_result(). Note: Note that all columns must be bound by the application before calling mysqli_stmt_fetch(). Note: Data are transferred

mysqli_stmt::execute

(PHP 5, PHP 7) Executes a prepared Query bool mysqli_stmt::execute ( void ) Object oriented style Procedural style bool mysqli_stmt_execute ( mysqli_stmt $stmt ) Executes a query that has been previously prepared using the mysqli_prepare() function. When executed any parameter markers which exist will automatically be replaced with the appropriate data. If the statement is UPDATE, DELETE, or INSERT, the total number of af

mysqli_stmt::$error

(PHP 5, PHP 7) Returns a string description for last statement error string mysqli_stmt_error ( mysqli_stmt $stmt ) Object oriented style string $mysqli_stmt->error; Procedural style Returns a string containing the error message for the most recently invoked statement function that can succeed or fail. Parameters: stmt Procedural style only: A statement identifier retu

mysqli_stmt::$error_list

(PHP 5 >= 5.4.0, PHP 7) Returns a list of errors from the last statement executed array mysqli_stmt_error_list ( mysqli_stmt $stmt ) Object oriented style array $mysqli_stmt->error_list; Procedural style Returns an array of errors for the most recently invoked statement function that can succeed or fail. Parameters: stmt Procedural style only: A statement identifier

mysqli_stmt::$errno

(PHP 5, PHP 7) Returns the error code for the most recent statement call int mysqli_stmt_errno ( mysqli_stmt $stmt ) Object oriented style int $mysqli_stmt->errno; Procedural style Returns the error code for the most recently invoked statement function that can succeed or fail. Client error message numbers are listed in the MySQL errmsg.h header file, server error message numbers are listed in mysqld_error.h. In the My

mysqli_stmt::data_seek

(PHP 5, PHP 7) Seeks to an arbitrary row in statement result set void mysqli_stmt::data_seek ( int $offset ) Object oriented style Procedural style void mysqli_stmt_data_seek ( mysqli_stmt $stmt , int $offset ) Seeks to an arbitrary result pointer in the statement result set. mysqli_stmt_store_result() must be called prior to mysqli_stmt_data_seek(). Parameters: stmt P