From 201dfe7409de2a6ce8877206241731511fa60486 Mon Sep 17 00:00:00 2001 From: Ulf Wendel Date: Fri, 23 Sep 2011 14:51:15 +0000 Subject: [PATCH] Minor change, aligning syntax/spelling. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@317204 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqlnd_ms/concepts.xml | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/reference/mysqlnd_ms/concepts.xml b/reference/mysqlnd_ms/concepts.xml index 094938ccff..5dd0152105 100755 --- a/reference/mysqlnd_ms/concepts.xml +++ b/reference/mysqlnd_ms/concepts.xml @@ -165,10 +165,10 @@ - change_user + change_user() - Called by the mysqli_change_user user API call. + Called by the mysqli_change_user user API call. Also triggered upon reuse of a persistent mysqli connection. @@ -190,7 +190,7 @@ - set_charset + set_charset() Called by the following user API calls: @@ -201,7 +201,7 @@ - set_server_option + set_server_option() Called by the following user API calls: @@ -214,7 +214,7 @@ - set_client_option + set_client_option() Called by the following user API calls: @@ -228,7 +228,7 @@ - set_autocommit + set_autocommit() Called by the following user API calls: @@ -239,7 +239,7 @@ - ssl_set + ssl_set() Called by the following user API calls: @@ -290,7 +290,7 @@ - change_user + change_user() User, password and database recorded for future use. @@ -308,7 +308,7 @@ - set_charset + set_charset() Calls set_client_option(MYSQL_SET_CHARSET_NAME, charset) @@ -319,7 +319,7 @@ - set_autocommit + set_autocommit() Adds SET AUTOCOMMIT=0|1 to the list of init commands @@ -360,14 +360,17 @@ The latest version of the mysqlnd library, as found in PHP 5.4.0, allows the plugin to subclass the library C API call - trx_autocommit() to + set_autocommit() to detect the status of the autocommit mode. The PHP MySQL extensions either issue a query such as SET AUTOCOMMIT=0|1 - or use the mysqlnd library call trx_autcommit() to control + or use the mysqlnd library call set_autcommit() to control the autocommit setting. If an extension makes use of - trx_autocommit(), the plugin can be made transaction aware. + set_autocommit(), the plugin can be made transaction aware. Transaction awareness cannot be achieved, if using SQL to set the autocommit - mode. + mode. + The library function set_autocommit() is called by the + mysqli_autocommit and + PDO::setAttribute(PDO::ATTR_AUTOCOMMIT) user API calls. The experimental pluging configuration option