diff options
author | Marc Boeren <mboeren@php.net> | 2002-10-28 09:54:21 +0000 |
---|---|---|
committer | Marc Boeren <mboeren@php.net> | 2002-10-28 09:54:21 +0000 |
commit | abb1f691661415ed741dc7ebe414fc2e944a9c69 (patch) | |
tree | c7e3a73207621af8430a3e3694a5e4d4b8e69c9e /php.ini-dist | |
parent | 1d1febb79b6b6aab154f10351a6aa8dec3a0790c (diff) | |
download | php-git-abb1f691661415ed741dc7ebe414fc2e944a9c69.tar.gz |
Added dbx.colnames_case option that controls the case of the returned
column names.
Diffstat (limited to 'php.ini-dist')
-rw-r--r-- | php.ini-dist | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 61910638e6..f222ad46f4 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -721,6 +721,16 @@ sybct.min_server_severity = 10 ; Minimum client message severity to display. sybct.min_client_severity = 10 +[dbx] +; returned column names can be converted for compatibility reasons +; possible values for dbx.colnames_case are +; "unchanged" (default, if not set) +; "lowercase" +; "uppercase" +; the recommended default is either upper- or lowercase, but +; unchanged is currently set for backwards compatibility +dbx.colnames_case = "unchanged" + [bcmath] ; Number of decimal digits for all bcmath functions. bcmath.scale = 0 |