From 643edde96137ee235eb2add48092798b94e74594 Mon Sep 17 00:00:00 2001 From: Dave Barr Date: Mon, 26 Jul 2004 07:03:32 +0000 Subject: [PATCH] - typo fixes, case-consistency, ()-consistency. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164320 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/reference.xml | 46 +++++++++++++++++----------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/reference/mysqli/reference.xml b/reference/mysqli/reference.xml index a4ad2dcf6b..b2713aad44 100644 --- a/reference/mysqli/reference.xml +++ b/reference/mysqli/reference.xml @@ -1,5 +1,5 @@ - + Improved MySQL Extension mysqli @@ -49,7 +49,7 @@ &reftitle.constructor; - mysqli() - construct a new mysqli object + mysqli - construct a new mysqli object @@ -57,10 +57,10 @@ &reftitle.methods; - autocommit() - turns on or off auto-commiting database modifications + autocommit - turns on or off auto-commiting database modifications - change_user() - changes the user of the specified database connection + change_user - changes the user of the specified database connection character_set_name - returns the default character set for the database connection @@ -105,7 +105,7 @@ multi_query - performs multiple queries - more_results - check if more results exists from currently executed multi-query + more_results - check if more results exist from currently executed multi-query next_result - reads next result from currently executed multi-query @@ -126,7 +126,7 @@ real_connect - attempts to open a connection to MySQL database server - escape_string - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection + escape_string - escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection rollback - rolls back the current transaction @@ -141,7 +141,7 @@ stat - gets the current system status - stmt_initInitializes a statement for use with mysqli_stmt_prepare + stmt_init- initializes a statement for use with mysqli_stmt_prepare store_result - transfers a resultset from last query @@ -164,7 +164,7 @@ client_info - returns the MySQL client version as a string - client_version -returns the MySQL client version as an integer + client_version - returns the MySQL client version as an integer errno - returns the error code for the most recent function call @@ -194,7 +194,7 @@ thread_id - returns the thread ID for the current connection - warning-count - returns the number of warnings generated during execution of the previous SQL statement + warning-count - returns the number of warnings generated during execution of the previous SQL statement @@ -210,40 +210,40 @@ &reftitle.methods; - bind_param - Binds variables to a prepared statement + bind_param - binds variables to a prepared statement - bind_result - Binds variables to a prepared statement for result storage + bind_result - binds variables to a prepared statement for result storage - close - Closes a prepared statement + close - closes a prepared statement - data-seek - Seeks to an arbitrary row in a statement result set + data-seek - seeks to an arbitrary row in a statement result set - execute - Executes a prepared statement + execute - executes a prepared statement - fetch - Fetches result from a prepared statement into bound variables + fetch - fetches result from a prepared statement into bound variables - free_result - Frees stored result memory for the given statement handle + free_result - frees stored result memory for the given statement handle - result_metadata - Retrieves a resultset from a prepared statement for metadata information + result_metadata - retrieves a resultset from a prepared statement for metadata information prepare - prepares a SQL query - send_long_data - Sends data in chunks + send_long_data - sends data in chunks reset - resets a prepared statement - store_result - Buffers complete resultset from a prepared statement + store_result - buffers complete resultset from a prepared statement @@ -251,16 +251,16 @@ &reftitle.properties; - affected_rows - Returns affected rows from last statement execution + affected_rows - returns affected rows from last statement execution - errno - Returns errorcode for last statement function + errno - returns errorcode for last statement function - errno - Returns errormessage for last statement function + errno - returns errormessage for last statement function - param_count - Returns number of parameter for a given prepare statement + param_count - returns number of parameter for a given prepare statement sqlstate - returns a string containing the SQLSTATE error code for the last statement function