From fca3954091bf6bb579d9df02c703582977af37d6 Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Mon, 1 Apr 2002 21:09:19 +0000 Subject: [PATCH] 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 --- functions/uodbc.xml | 128 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 125 insertions(+), 3 deletions(-) diff --git a/functions/uodbc.xml b/functions/uodbc.xml index 5c42f71c84..27fd5702c6 100644 --- a/functions/uodbc.xml +++ b/functions/uodbc.xml @@ -1,5 +1,5 @@ - + Unified ODBC functions ODBC @@ -52,9 +52,9 @@ Runtime Configuration The behaviour of the ODBC functions is affected by settings in the - global configuration file. + global configuration file &php.ini;. - <link linkend="ini.sect.uodbc">Unified ODBC Configuration</link> Options + Unified ODBC Configuration Options @@ -120,6 +120,128 @@ For further details and definition of the PHP_INI_* constants see ini_set. + + Here is a short explanation of the configuration directives. + + + + + odbc.default_db + string + + + + ODBC data source to use if none is specified in + odbc_connect or + odbc_pconnect. + + + + + + + odbc.default_user + string + + + + User name to use if none is specified in + odbc_connect or + odbc_pconnect. + + + + + + + odbc.default_pw + string + + + + Password to use if none is specified in + odbc_connect or + odbc_pconnect. + + + + + + + odbc.allow_persistent + boolean + + + + Whether to allow persistent ODBC connections. + + + + + + + odbc.check_persistent + boolean + + + + Check that a connection is still valid before reuse. + + + + + + + odbc.max_persistent + integer + + + + The maximum number of persistent ODBC connections per process. + + + + + + + odbc.max_links + integer + + + + The maximum number of ODBC connections per process, including + persistent connections. + + + + + + + odbc.defaultlrl + integer + + + + Handling of LONG fields. Specifies the number of bytes returned to + variables. + + + + + + + odbc.defaultbinmode + integer + + + + Handling of binary data. + + + + + +