Minor change, aligning syntax/spelling.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@317204 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Ulf Wendel 2011-09-23 14:51:15 +00:00
parent 959f08ef08
commit 201dfe7409

View file

@ -165,10 +165,10 @@
<tbody>
<row>
<entry>
<literal>change_user</literal>
<literal>change_user()</literal>
</entry>
<entry>
Called by the <literal>mysqli_change_user</literal> user API call.
Called by the <function>mysqli_change_user</function> user API call.
Also triggered upon reuse of a persistent <literal>mysqli</literal>
connection.
</entry>
@ -190,7 +190,7 @@
</row>
<row>
<entry>
<literal>set_charset</literal>
<literal>set_charset()</literal>
</entry>
<entry>
Called by the following user API calls:
@ -201,7 +201,7 @@
</row>
<row>
<entry>
<literal>set_server_option</literal>
<literal>set_server_option()</literal>
</entry>
<entry>
Called by the following user API calls:
@ -214,7 +214,7 @@
</row>
<row>
<entry>
<literal>set_client_option</literal>
<literal>set_client_option()</literal>
</entry>
<entry>
Called by the following user API calls:
@ -228,7 +228,7 @@
</row>
<row>
<entry>
<literal>set_autocommit</literal>
<literal>set_autocommit()</literal>
</entry>
<entry>
Called by the following user API calls:
@ -239,7 +239,7 @@
</row>
<row>
<entry>
<literal>ssl_set</literal>
<literal>ssl_set()</literal>
</entry>
<entry>
Called by the following user API calls:
@ -290,7 +290,7 @@
<tbody>
<row>
<entry>
<literal>change_user</literal>
<literal>change_user()</literal>
</entry>
<entry>
User, password and database recorded for future use.
@ -308,7 +308,7 @@
</row>
<row>
<entry>
<literal>set_charset</literal>
<literal>set_charset()</literal>
</entry>
<entry>
Calls <literal>set_client_option(MYSQL_SET_CHARSET_NAME, charset)</literal>
@ -319,7 +319,7 @@
</row>
<row>
<entry>
<literal>set_autocommit</literal>
<literal>set_autocommit()</literal>
</entry>
<entry>
Adds <literal>SET AUTOCOMMIT=0|1</literal> to the list of init commands
@ -360,14 +360,17 @@
<para>
The latest version of the <literal>mysqlnd</literal> library, as found in
PHP 5.4.0, allows the plugin to subclass the library C API call
<literal>trx_autocommit()</literal> to
<literal>set_autocommit()</literal> to
detect the status of the <literal>autocommit</literal> mode. The PHP MySQL
extensions either issue a query such as <literal>SET AUTOCOMMIT=0|1</literal>
or use the mysqlnd library call <literal>trx_autcommit()</literal> to control
or use the mysqlnd library call <literal>set_autcommit()</literal> to control
the <literal>autocommit</literal> setting. If an extension makes use of
<literal>trx_autocommit()</literal>, the plugin can be made transaction aware.
<literal>set_autocommit()</literal>, the plugin can be made transaction aware.
Transaction awareness cannot be achieved, if using SQL to set the autocommit
mode.
mode.
The library function <literal>set_autocommit()</literal> is called by the
<function>mysqli_autocommit</function> and
<function>PDO::setAttribute(PDO::ATTR_AUTOCOMMIT)</function> user API calls.
</para>
<para>
The experimental pluging configuration option