correcting uodbc directives. changed uodbc.* to odbc.*

minor changes to MySQL directives


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@75795 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Friedhelm Betz 2002-03-29 15:31:37 +00:00
parent add5cde2ff
commit 3e088c94b2

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.41 $ -->
<!-- $Revision: 1.42 $ -->
<chapter id="configuration">
<title>Configuration</title>
@ -905,18 +905,6 @@ include_path=".;c:\www\phplib"
<title>MySQL Configuration Directives</title>
<variablelist>
<varlistentry id="ini.mysql.allow-persistent">
<term>
<parameter>mysql.allow_persistent</parameter>
<type>boolean</type>
</term>
<listitem>
<para>
Whether to allow persistent MySQL connections.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.mysql.default-host">
<term>
<parameter>mysql.default_host</parameter>
@ -925,7 +913,8 @@ include_path=".;c:\www\phplib"
<listitem>
<para>
The default server host to use when connecting to the database
server if no other host is specified.
server if no other host is specified. Doesn't apply in
<link linkend="ini.safe-mode">safe mode</link>.
</para>
</listitem>
</varlistentry>
@ -938,7 +927,8 @@ include_path=".;c:\www\phplib"
<listitem>
<para>
The default user name to use when connecting to the database
server if no other name is specified.
server if no other name is specified. Doesn't apply in
<link linkend="ini.safe-mode">safe mode</link>.
</para>
</listitem>
</varlistentry>
@ -951,7 +941,8 @@ include_path=".;c:\www\phplib"
<listitem>
<para>
The default password to use when connecting to the database
server if no other password is specified.
server if no other password is specified. Doesn't apply in
<link linkend="ini.safe-mode">safe mode</link>.
</para>
</listitem>
</varlistentry>
@ -987,6 +978,20 @@ include_path=".;c:\www\phplib"
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.mysql.allow-persistent">
<term>
<parameter>mysql.allow_persistent</parameter>
<type>boolean</type>
</term>
<listitem>
<para>
Wether to allow
<link linkend="features.persistent-connections">persistent connections</link>
to MySQL.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.mysql.max-persistent">
<term>
@ -1555,7 +1560,7 @@ NOTYPE
<varlistentry id="ini.uodbc.default-db">
<term>
<parameter>uodbc.default_db</parameter>
<parameter>odbc.default_db</parameter>
<type>string</type>
</term>
<listitem>
@ -1569,7 +1574,7 @@ NOTYPE
<varlistentry id="ini.uodbc.default-user">
<term>
<parameter>uodbc.default_user</parameter>
<parameter>odbc.default_user</parameter>
<type>string</type>
</term>
<listitem>
@ -1581,9 +1586,9 @@ NOTYPE
</listitem>
</varlistentry>
<varlistentry id="ini.uodbc.default-pw">
<varlistentry id="ini.odbc.default-pw">
<term>
<parameter>uodbc.default_pw</parameter>
<parameter>odbc.default_pw</parameter>
<type>string</type>
</term>
<listitem>
@ -1597,7 +1602,7 @@ NOTYPE
<varlistentry id="ini.uodbc.allow-persistent">
<term>
<parameter>uodbc.allow_persistent</parameter>
<parameter>odbc.allow_persistent</parameter>
<type>boolean</type>
</term>
<listitem>
@ -1607,9 +1612,21 @@ NOTYPE
</listitem>
</varlistentry>
<varlistentry id="ini.uodbc.check-persistent">
<term>
<parameter>odbc.check_persistent</parameter>
<type>boolean</type>
</term>
<listitem>
<para>
Check that a connection is still valid before reuse.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.uodbc.max-persistent">
<term>
<parameter>uodbc.max_persistent</parameter>
<parameter>odbc.max_persistent</parameter>
<type>integer</type>
</term>
<listitem>
@ -1621,7 +1638,7 @@ NOTYPE
<varlistentry id="ini.uodbc.max-links">
<term>
<parameter>uodbc.max_links</parameter>
<parameter>odbc.max_links</parameter>
<type>integer</type>
</term>
<listitem>
@ -1631,6 +1648,30 @@ NOTYPE
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.uodbc.defaultlrl">
<term>
<parameter>odbc.defaultlrl</parameter>
<type>integer</type>
</term>
<listitem>
<para>
Handling of LONG fields. Specifies the number of bytes returned to variables.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.uodbc.defaultbinmode">
<term>
<parameter>odbc.defaultbinmode</parameter>
<type>integer</type>
</term>
<listitem>
<para>
Handling of binary data.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>