diff options
author | Johannes Schlüter <johannes@php.net> | 2009-06-28 16:40:22 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2009-06-28 16:40:22 +0000 |
commit | c2eb2ed47b4553acf23907616b293b540d56adb7 (patch) | |
tree | 6eb7d576ee857d274c957121a7485eeaefda0f5b | |
parent | dd3e47ebe7bd7bf8fd58309c014ef3be2da51f33 (diff) | |
download | php-git-c2eb2ed47b4553acf23907616b293b540d56adb7.tar.gz |
Add ibase settings
-rw-r--r-- | php.ini-development | 31 | ||||
-rw-r--r-- | php.ini-production | 31 |
2 files changed, 62 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development index 4f62cd04da..6c9859f7f5 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1143,6 +1143,37 @@ odbc.defaultbinmode = 1 ;birdstep.max_links = -1 +[Interbase] +; Allow or prevent persistent links. +ibase.allow_persistent = 1 + +; Maximum number of persistent links. -1 means no limit. +ibase.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +ibase.max_links = -1 + +; Default database name for ibase_connect(). +;ibase.default_db = + +; Default username for ibase_connect(). +;ibase.default_user = + +; Default password for ibase_connect(). +;ibase.default_password = + +; Default charset for ibase_connect(). +;ibase.default_charset = + +; Default timestamp format. +ibase.timestampformat = "%Y-%m-%d %H:%M:%S" + +; Default date format. +ibase.dateformat = "%Y-%m-%d" + +; Default time format. +ibase.timeformat = "%H:%M:%S" + [MySQL] ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements ; http://php.net/mysql.allow_local_infile diff --git a/php.ini-production b/php.ini-production index b83672161f..d44b2efd02 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1143,6 +1143,37 @@ odbc.defaultbinmode = 1 ;birdstep.max_links = -1 +[Interbase] +; Allow or prevent persistent links. +ibase.allow_persistent = 1 + +; Maximum number of persistent links. -1 means no limit. +ibase.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +ibase.max_links = -1 + +; Default database name for ibase_connect(). +;ibase.default_db = + +; Default username for ibase_connect(). +;ibase.default_user = + +; Default password for ibase_connect(). +;ibase.default_password = + +; Default charset for ibase_connect(). +;ibase.default_charset = + +; Default timestamp format. +ibase.timestampformat = "%Y-%m-%d %H:%M:%S" + +; Default date format. +ibase.dateformat = "%Y-%m-%d" + +; Default time format. +ibase.timeformat = "%H:%M:%S" + [MySQL] ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements ; http://php.net/mysql.allow_local_infile |