Runtime Config tor uodbc added

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@75791 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Friedhelm Betz 2002-03-29 15:25:47 +00:00
parent e47fad0890
commit 4fdeb0aa5a

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.37 $ -->
<!-- $Revision: 1.38 $ -->
<reference id="ref.odbc">
<title>Unified ODBC functions</title>
<titleabbrev>ODBC</titleabbrev>
@ -50,7 +50,76 @@
<section id="odbc.configuration">
<title>Runtime Configuration</title>
&no.config;
<para>
The behaviour of the ODBC functions is affected by settings in the
global <link linkend="configuration">configuration</link> file.
<table>
<title><link linkend="ini.sect.uodbc">Unified ODBC Configuration</link> Options</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
</row>
</thead>
<tbody>
<row>
<entry>odbc.default_db *</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>odbc.default_user *</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>odbc.default_pw *</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>odbc.allow_persistent</entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
</row>
<row>
<entry>odbc.check_persistent</entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
</row>
<row>
<entry>odbc.max_persistent</entry>
<entry>"-1"</entry>
<entry>PHP_INI_SYSTEM</entry>
</row>
<row>
<entry>odbc.max_links</entry>
<entry>"-1"</entry>
<entry>PHP_INI_SYSTEM</entry>
</row>
<row>
<entry>odbc.defaultlrl</entry>
<entry>"4096"</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>odbc.defaultbinmode</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
</row>
</tbody>
</tgroup>
</table>
<note>
<simpara>
Entries marked with * are not implemented yet.
</simpara>
</note>
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
</para>
</section>
<section id="odbc.resources">