diff --git a/reference/ibase/ini.xml b/reference/ibase/ini.xml index f238502d00..d044d2e638 100644 --- a/reference/ibase/ini.xml +++ b/reference/ibase/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -17,7 +17,7 @@ ibase.allow_persistent - "1" + "On" PHP_INI_SYSTEM @@ -30,6 +30,11 @@ "-1" PHP_INI_SYSTEM + + ibase.default_db + NULL + PHP_INI_SYSTEM + ibase.default_user NULL @@ -40,14 +45,19 @@ NULL PHP_INI_ALL + + ibase.default_charset + NULL + PHP_INI_ALL + ibase.timestampformat - "%m/%d/%Y%H:%M:%S" + "%Y-%m-%d %H:%M:%S" PHP_INI_ALL ibase.dateformat - "%m/%d/%Y" + "%Y-%m-%d" PHP_INI_ALL @@ -60,6 +70,140 @@ For further details and definition of the PHP_INI_* constants see ini_set. + + + &ini.descriptions.title; + + + + + + ibase.allow_persistent + boolean + + + + Whether to allow + persistent connections + to Firebird/InterBase. + + + + + + + ibase.max_persistent + integer + + + + The maximum number of persistent Firebird/InterBase connections per + process. New connections created with ibase_pconnect() will be non-persistent + if this number would be exceeded. + + + + + + + ibase.max_links + integer + + + + The maximum number of Firebird/InterBase connections per process, including + persistent connections. + + + + + + ibase.default_db + string + + + + The default database to connect to when ibase_[p]connect() is called + without specifying a database name. If this value is set and SQL safe + mode is enabled, no other connections than to this database will be allowed. + + + + + + ibase.default_user + string + + + + The user name to use when connecting to a database + if no user name is specified. + + + + + + + ibase.default_password + string + + + + The password to use when connecting to a database + if no password is specified. + + + + + + ibase.default_charset + string + + + + The character set to use when connecting to a database + if no character set is specified. + + + + + + + + + ibase.timestampformat + string + + + + + + + + + ibase.dateformat + string + + + + + + + + + ibase.timeformat + string + + + + These directives are used to set the date and time formats + that are used when returning dates and times from a result set, + or when binding arguments to date and time parameters. + + + + +