mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Initial version of mysqli function jump table.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@267935 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5ed11e8a88
commit
64505ff958
1 changed files with 700 additions and 0 deletions
700
reference/mysqli/summary.xml
Executable file
700
reference/mysqli/summary.xml
Executable file
|
@ -0,0 +1,700 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<chapter xml:id="mysqli.summary" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<title>The MySQLi Extension Function Summary</title>
|
||||
|
||||
<informaltable>
|
||||
<tgroup cols="4">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>MySQLi Class</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>OOP Interface</entry>
|
||||
<entry>Procedural Interface</entry>
|
||||
<entry>Alias (Do not use)</entry>
|
||||
<entry>Description</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Properties</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.affected-rows">$mysqli->affected_rows</link></entry>
|
||||
<entry><function>mysqli_affected_rows</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Gets the number of affected rows in a previous MySQL operation</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.connect-errno">$mysqli->connect_errno</link></entry>
|
||||
<entry><function>mysqli_connect_errno</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the error code from last connect call</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.connect-error">$mysqli->connect_error</link></entry>
|
||||
<entry><function>mysqli_connect_error</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns a string description of the last connect error</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.errno">$mysqli->errno</link></entry>
|
||||
<entry><function>mysqli_errno</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the error code for the most recent function call</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.error">$mysqli->error</link></entry>
|
||||
<entry><function>mysqli_error</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns a string description of the last error</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.field-count">$mysqli->field_count</link></entry>
|
||||
<entry><function>mysqli_field_count</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the number of columns for the most recent query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-host-info">$mysqli->host_info</link></entry>
|
||||
<entry><function>mysqli_get_host_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns a string representing the type of connection used</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-proto-info">$mysqli->protocol_version</link></entry>
|
||||
<entry><function>mysqli_get_proto_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the version of the MySQL protocol used</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-server-info">$mysqli->server_info</link></entry>
|
||||
<entry><function>mysqli_get_server_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the version of the MySQL server</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-server-version">$mysqli->server_version</link></entry>
|
||||
<entry><function>mysqli_get_server_version</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the version of the MySQL server as an integer</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.info">$mysqli->info</link></entry>
|
||||
<entry><function>mysqli_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Retrieves information about the most recently executed query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.insert-id">$mysqli->insert_id</link></entry>
|
||||
<entry><function>mysqli_insert_id</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the auto generated id used in the last query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.sqlstate">$mysqli->sqlstate</link></entry>
|
||||
<entry><function>mysqli_sqlstate</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the SQLSTATE error from previous MySQL operation</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.warning-count">$mysqli->warning_count</link></entry>
|
||||
<entry><function>mysqli_warning_count</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the number of warnings from the last query for the given link</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Methods</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.autocommit">$mysqli->autocommit</link></entry>
|
||||
<entry><function>mysqli_autocommit</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Turns on or off auto-commiting database modifications</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.change-user">$mysqli->change_user</link></entry>
|
||||
<entry><function>mysqli_change_user</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Changes the user of the specified database connection</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.character-set-name">$mysqli->character_set_name,
|
||||
$mysqli->client_encoding</link></entry>
|
||||
<entry><function>mysqli_character_set_name</function></entry>
|
||||
<entry><function>mysqli_client_encoding</function></entry>
|
||||
<entry>Returns the default character set for the database connection</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.close">$mysqli->close</link></entry>
|
||||
<entry><function>mysqli_close</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Closes a previously opened database connection</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.commit">$mysqli->commit</link></entry>
|
||||
<entry><function>mysqli_commit</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Commits the current transaction</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.connect">mysqli::__construct</link></entry>
|
||||
<entry><function>mysqli_connect</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Open a new connection to the MySQL server [Note: static (i.e. class)
|
||||
method]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.debug">$mysqli->debug</link></entry>
|
||||
<entry><function>mysqli_debug</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Performs debugging operations</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.dump-debug-info">$mysqli->dump_debug_info</link></entry>
|
||||
<entry><function>mysqli_dump_debug_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Dump debugging information into the log</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-charset">$mysqli->get_charset</link></entry>
|
||||
<entry><function>mysqli_get_charset</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns a character set object</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-client-info">$mysqli->get_client_info</link></entry>
|
||||
<entry><function>mysqli_get_client_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the MySQL client version as a string</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-client-version">$mysqli->get_client_version</link></entry>
|
||||
<entry><function>mysqli_get_client_version</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Get MySQL client info</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>$mysqli->get_connection_stats</entry>
|
||||
<entry>mysqli_get_connection_stats</entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED [mysqlnd only]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-server-info">$mysqli->get_server_info</link></entry>
|
||||
<entry><function>mysqli_get_server_info</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.get-warnings">$mysqli->get_warnings</link></entry>
|
||||
<entry><function>mysqli_get_warnings</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.init">mysqli_init</link></entry>
|
||||
<entry><function>mysqli_init</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Initializes MySQLi and returns a resource for use with
|
||||
mysqli_real_connect. [Not called on an object, as it returns a
|
||||
$mysqli object.]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.kill">$mysqli->kill</link></entry>
|
||||
<entry><function>mysqli_kill</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Asks the server to kill a MySQL thread</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.more-results">$mysqli->more_results</link></entry>
|
||||
<entry><function>mysqli_more_results</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Check if there are any more query results from a multi query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.multi-query">$mysqli->multi_query</link></entry>
|
||||
<entry><function>mysqli_multi_query</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Performs a query on the database</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.next-result">$mysqli->next_result</link></entry>
|
||||
<entry><function>mysqli_next_result</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Prepare next result from multi_query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.options">$mysqli->options</link></entry>
|
||||
<entry><function>mysqli_options</function></entry>
|
||||
<entry><function>mysqli_set_opt</function></entry>
|
||||
<entry>Set options</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.ping">$mysqli->ping</link></entry>
|
||||
<entry><function>mysqli_ping</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Pings a server connection, or tries to reconnect if the connection has
|
||||
gone down</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.prepare">$mysqli->prepare</link></entry>
|
||||
<entry><function>mysqli_prepare</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Prepare a SQL statement for execution</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.query">$mysqli->query</link></entry>
|
||||
<entry><function>mysqli_query</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Performs a query on the database</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.real-connect">$mysqli->real_connect</link></entry>
|
||||
<entry><function>mysqli_real_connect</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Opens a connection to a mysql server</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.real-escape-string">$mysqli->real_escape_string</link>,
|
||||
<link linkend="mysqli.real-escape-string">$mysqli->escape_string</link></entry>
|
||||
<entry><function>mysqli_real_escape_string</function></entry>
|
||||
<entry><function>mysqli_escape_string</function></entry>
|
||||
<entry>Escapes special characters in a string for use in a SQL statement,
|
||||
taking into account the current charset of the connection</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.real-query">$mysqli->real_query</link></entry>
|
||||
<entry><function>mysqli_real_query</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Execute an SQL query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.rollback">$mysqli->rollback</link></entry>
|
||||
<entry><function>mysqli_rollback</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Rolls back current transaction</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.select-db">$mysqli->select_db</link></entry>
|
||||
<entry><function>mysqli_select_db</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Selects the default database for database queries</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.set-charset">$mysqli->set_charset</link></entry>
|
||||
<entry><function>mysqli_set_charset</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Sets the default client character set</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.set-local-infile-default">$mysqli->set_local_infile_default</link></entry>
|
||||
<entry><function>mysqli_set_local_infile_default</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Unsets user defined handler for load local infile command</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.set-local-infile-handler">$mysqli->set_local_infile_handler</link></entry>
|
||||
<entry><function>mysqli_set_local_infile_handler</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Set callback function for LOAD DATA LOCAL INFILE command</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.ssl-set">$mysqli->ssl_set</link></entry>
|
||||
<entry><function>mysqli_ssl_set</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Used for establishing secure connections using SSL</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.stat">$mysqli->stat</link></entry>
|
||||
<entry><function>mysqli_stat</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Gets the current system status</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.stmt-init">$mysqli->stmt_init</link></entry>
|
||||
<entry><function>mysqli_stmt_init</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Initializes a statement and returns an object for use with
|
||||
mysqli_stmt_prepare</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.store-result">$mysqli->store_result</link></entry>
|
||||
<entry><function>mysqli_store_result</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Transfers a result set from the last query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.thread-id">$mysqli->thread_id</link></entry>
|
||||
<entry><function>mysqli_thread_id</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the thread ID for the current connection</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.thread-safe">$mysqli->thread_safe</link></entry>
|
||||
<entry><function>mysqli_thread_safe</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns whether thread safety is given or not</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli.use-result">$mysqli->use_result</link></entry>
|
||||
<entry><function>mysqli_use_result</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Initiate a result set retrieval</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
|
||||
<informaltable>
|
||||
<tgroup cols="4">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>MySQL_STMT</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>OOP Interface</entry>
|
||||
<entry>Procedural Interface</entry>
|
||||
<entry>Alias (Do not use)</entry>
|
||||
<entry>Description</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Properties</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.affected-rows">$mysqli_stmt->affected_rows</link></entry>
|
||||
<entry><function>mysqli_stmt_affected_rows</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the total number of rows changed, deleted, or inserted by the
|
||||
last executed statement</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.errno">$mysqli_stmt->errno</link></entry>
|
||||
<entry><function>mysqli_stmt_errno</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the error code for the most recent statement call</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.error">$mysqli_stmt->error</link></entry>
|
||||
<entry><function>mysqli_stmt_error</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns a string description for last statement error</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.field-count">$mysqli_stmt->field_count</link></entry>
|
||||
<entry><function>mysqli_stmt_field_count</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the number of field in the given statement - not documented</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.insert-id">$mysqli_stmt->insert_id</link></entry>
|
||||
<entry><function>mysqli_stmt_insert_id</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Get the ID generated from the previous INSERT operation</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.num-rows">$mysqli_stmt->num_rows</link></entry>
|
||||
<entry><function>mysqli_stmt_num_rows</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Return the number of rows in statements result set</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.param-count">$mysqli_stmt->param_count</link></entry>
|
||||
<entry><function>mysqli_stmt_param_count</function></entry>
|
||||
<entry><function>mysqli_param_count</function></entry>
|
||||
<entry>Returns the number of parameter for the given statement</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.sqlstate">$mysqli_stmt->sqlstate</link></entry>
|
||||
<entry><function>mysqli_stmt_sqlstate</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns SQLSTATE error from previous statement operation</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Methods</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.attr-get">$mysqli_stmt->attr_get</link></entry>
|
||||
<entry><function>mysqli_stmt_attr_get</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.attr-set">$mysqli_stmt->attr_set</link></entry>
|
||||
<entry><function>mysqli_stmt_attr_set</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.bind-param">$mysqli_stmt->bind_param</link></entry>
|
||||
<entry><function>mysqli_stmt_bind_param</function></entry>
|
||||
<entry><function>mysqli_bind_param</function></entry>
|
||||
<entry>Binds variables to a prepared statement as parameters</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.bind-result">$mysqli_stmt->bind_result</link></entry>
|
||||
<entry><function>mysqli_stmt_bind_result</function></entry>
|
||||
<entry><function>mysqli_bind_result</function></entry>
|
||||
<entry>Binds variables to a prepared statement for result storage</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.close">$mysqli_stmt->close</link></entry>
|
||||
<entry><function>mysqli_stmt_close</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Closes a prepared statement</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.data-seek">$mysqli_stmt->data_seek</link></entry>
|
||||
<entry><function>mysqli_stmt_data_seek</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Seeks to an arbitrary row in statement result set</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.execute">$mysqli_stmt->execute</link></entry>
|
||||
<entry><function>mysqli_stmt_execute</function></entry>
|
||||
<entry><function>mysqli_execute</function></entry>
|
||||
<entry>Executes a prepared Query</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.fetch">$mysqli_stmt->fetch</link></entry>
|
||||
<entry><function>mysqli_stmt_fetch</function></entry>
|
||||
<entry><function>mysqli_fetch</function></entry>
|
||||
<entry>Fetch results from a prepared statement into the bound variables</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.free-result">$mysqli_stmt->free_result</link></entry>
|
||||
<entry><function>mysqli_stmt_free_result</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Frees stored result memory for the given statement handle</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>$mysqli_stmt->get_result</entry>
|
||||
<entry>mysqli_stmt_get_result</entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED [mysqlnd only]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.get-warnings">$mysqli_stmt->get_warnings</link></entry>
|
||||
<entry><function>mysqli_stmt_get_warnings</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>$mysqli_stmt->more_results</entry>
|
||||
<entry>mysqli_stmt_more_results</entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED [mysqlnd only]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>$mysqli_stmt->next_result</entry>
|
||||
<entry>mysqli_stmt_next_result</entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED [mysqlnd only]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.num-rows">$mysqli_stmt->num_rows</link></entry>
|
||||
<entry><function>mysqli_stmt_num_rows</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED [see also num_rows property]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.prepare">$mysqli_stmt->prepare</link></entry>
|
||||
<entry><function>mysqli_stmt_prepare</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Prepare a SQL statement for execution</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.reset">$mysqli_stmt->reset</link></entry>
|
||||
<entry><function>mysqli_stmt_reset</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Resets a prepared statement</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.result-metadata">$mysqli_stmt->result_metadata</link></entry>
|
||||
<entry><function>mysqli_stmt_result_metadata</function></entry>
|
||||
<entry><function>mysqli_get_metadata</function></entry>
|
||||
<entry>Returns result set metadata from a prepared statement</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.send-long-data">$mysqli_stmt->send_long_data</link></entry>
|
||||
<entry><function>mysqli_stmt_send_long_data</function></entry>
|
||||
<entry><function>mysqli_send_long_data</function></entry>
|
||||
<entry>Send data in blocks</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-stmt.store-result">$mysqli_stmt->store_result</link></entry>
|
||||
<entry><function>mysqli_stmt_store_result</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Transfers a result set from a prepared statement</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
|
||||
<informaltable>
|
||||
<tgroup cols="4">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>MySQLi_RESULT</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>OOP Interface</entry>
|
||||
<entry>Procedural Interface</entry>
|
||||
<entry>Alias (Do not use)</entry>
|
||||
<entry>Description</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Properties</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.current-field">$mysqli_result->current_field</link></entry>
|
||||
<entry><function>mysqli_field_tell</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Get current field offset of a result pointer</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.field-count">$mysqli_result->field_count</link></entry>
|
||||
<entry><function>mysqli_num_fields</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Get the number of fields in a result</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.lengths">$mysqli_result->lengths</link></entry>
|
||||
<entry><function>mysqli_fetch_lengths</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the lengths of the columns of the current row in the result set</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.num-rows">$mysqli_result->num_rows</link></entry>
|
||||
<entry><function>mysqli_num_rows</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Gets the number of rows in a result</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Methods</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.data-seek">$mysqli_result->data_seek</link></entry>
|
||||
<entry><function>mysqli_data_seek</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Adjusts the result pointer to an arbitary row in the result</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>$mysqli_result->fetch_all</entry>
|
||||
<entry>mysqli_fetch_all</entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED [mysqlnd only]</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-array">$mysqli_result->fetch_array</link></entry>
|
||||
<entry><function>mysqli_fetch_array</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Fetch a result row as an associative, a numeric array, or both</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-assoc">$mysqli_result->fetch_assoc</link></entry>
|
||||
<entry><function>mysqli_fetch_assoc</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Fetch a result row as an associative array</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-field-direct">$mysqli_result->fetch_field_direct</link></entry>
|
||||
<entry><function>mysqli_fetch_field_direct</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Fetch meta-data for a single field</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-field">$mysqli_result->fetch_field</link></entry>
|
||||
<entry><function>mysqli_fetch_field</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the next field in the result set</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-fields">$mysqli_result->fetch_fields</link></entry>
|
||||
<entry><function>mysqli_fetch_fields</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns an array of objects representing the fields in a result set</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-object">$mysqli_result->fetch_object</link></entry>
|
||||
<entry><function>mysqli_fetch_object</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Returns the current row of a result set as an object</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.fetch-row">$mysqli_result->fetch_row</link></entry>
|
||||
<entry><function>mysqli_fetch_row</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Get a result row as an enumerated array</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.field-seek">$mysqli_result->field_seek</link></entry>
|
||||
<entry><function>mysqli_field_seek</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Set result pointer to a specified field offset</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-result.free">$mysqli_result->free</link>,
|
||||
<link linkend="mysqli-result.free">$mysqli_result->close</link>,
|
||||
<link linkend="mysqli-result.free">$mysqli_result->free_result</link></entry>
|
||||
<entry><function>mysqli_free_result</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>Frees the memory associated with a result</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
|
||||
<informaltable>
|
||||
<tgroup cols="4">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>MySQL_Driver</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>OOP Interface</entry>
|
||||
<entry>Procedural Interface</entry>
|
||||
<entry>Alias (Do not use)</entry>
|
||||
<entry>Description</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Properties</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>N/A</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><emphasis role="bold">Methods</emphasis></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-driver.embedded-server-end">$mysqli_driver->embedded_server_end</link></entry>
|
||||
<entry><function>mysqli_embedded_server_end</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="mysqli-driver.embedded-server-start">$mysqli_driver->embedded_server_start</link></entry>
|
||||
<entry><function>mysqli_embedded_server_start</function></entry>
|
||||
<entry>N/A</entry>
|
||||
<entry>NOT DOCUMENTED</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
|
||||
<note>
|
||||
<para>
|
||||
Alias functions are provided for backward compatibility purposes
|
||||
only. Do not use them in new projects.
|
||||
</para>
|
||||
</note>
|
||||
|
||||
</chapter>
|
Loading…
Reference in a new issue