mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
added ini-settings from config.xml to Runtime Config
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@76247 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
6139923d75
commit
fca3954091
1 changed files with 125 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.38 $ -->
|
||||
<!-- $Revision: 1.39 $ -->
|
||||
<reference id="ref.odbc">
|
||||
<title>Unified ODBC functions</title>
|
||||
<titleabbrev>ODBC</titleabbrev>
|
||||
|
@ -52,9 +52,9 @@
|
|||
<title>Runtime Configuration</title>
|
||||
<para>
|
||||
The behaviour of the ODBC functions is affected by settings in the
|
||||
global <link linkend="configuration">configuration</link> file.
|
||||
global <link linkend="configuration.file">configuration file</link> &php.ini;.
|
||||
<table>
|
||||
<title><link linkend="ini.sect.uodbc">Unified ODBC Configuration</link> Options</title>
|
||||
<title>Unified ODBC Configuration Options</title>
|
||||
<tgroup cols="3">
|
||||
<thead>
|
||||
<row>
|
||||
|
@ -120,6 +120,128 @@
|
|||
For further details and definition of the PHP_INI_* constants see
|
||||
<function>ini_set</function>.
|
||||
</para>
|
||||
<para>
|
||||
Here is a short explanation of the configuration directives.
|
||||
<variablelist>
|
||||
|
||||
<varlistentry id="ini.uodbc.default-db">
|
||||
<term>
|
||||
<parameter>odbc.default_db</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
ODBC data source to use if none is specified in
|
||||
<function>odbc_connect</function> or
|
||||
<function>odbc_pconnect</function>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.uodbc.default-user">
|
||||
<term>
|
||||
<parameter>odbc.default_user</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
User name to use if none is specified in
|
||||
<function>odbc_connect</function> or
|
||||
<function>odbc_pconnect</function>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.uodbc.default-pw">
|
||||
<term>
|
||||
<parameter>odbc.default_pw</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Password to use if none is specified in
|
||||
<function>odbc_connect</function> or
|
||||
<function>odbc_pconnect</function>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.uodbc.allow-persistent">
|
||||
<term>
|
||||
<parameter>odbc.allow_persistent</parameter>
|
||||
<type>boolean</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Whether to allow persistent ODBC connections.
|
||||
</para>
|
||||
</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>odbc.max_persistent</parameter>
|
||||
<type>integer</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
The maximum number of persistent ODBC connections per process.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.uodbc.max-links">
|
||||
<term>
|
||||
<parameter>odbc.max_links</parameter>
|
||||
<type>integer</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
The maximum number of ODBC connections per process, including
|
||||
persistent connections.
|
||||
</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>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="odbc.resources">
|
||||
|
|
Loading…
Reference in a new issue