El comportamiento de estas funciones se ve afectado por la configuración de php.ini.
Nombre | Por defecto | Cambiable | Historial de cambios |
---|---|---|---|
ibase.allow_persistent | "1" | PHP_INI_SYSTEM | |
ibase.max_persistent | "-1" | PHP_INI_SYSTEM | |
ibase.max_links | "-1" | PHP_INI_SYSTEM | |
ibase.default_db | NULL | PHP_INI_SYSTEM | Disponible desde PHP 5.0.0. |
ibase.default_user | NULL | PHP_INI_ALL | |
ibase.default_password | NULL | PHP_INI_ALL | |
ibase.default_charset | NULL | PHP_INI_ALL | Disponible desde PHP 5.0.0. |
ibase.timestampformat | "%Y-%m-%d %H:%M:%S" | PHP_INI_ALL | |
ibase.dateformat | "%Y-%m-%d" | PHP_INI_ALL | |
ibase.timeformat | "%H:%M:%S" | PHP_INI_ALL |
He aquí una breve explicación de las directivas de configuración.
ibase.allow_persistent
boolean
Indica si permite o no conexiones persistentes a Firebird/InterBase.
ibase.max_persistent
integer
Número máximo de conexiones persistentes a Firebird/InterBase por proceso. Si se excediera este número, las nuevas conexiones que se creen mediante ibase_pconnect() no serán persistentes.
ibase.max_links
integer
Número máximo de conexiones de Firebird/InterBase por proceso, incluyendo las conexiones persistentes.
ibase.default_db
string
Base de datos por omisión a la que conectar cuando se invoque ibase_[p]connect() sin especificar el nombre de base de datos. Si se establece este valor, y está habilitado el modo SQL seguro, no se permitirá que se conecte a ninguna otra base de datos.
ibase.default_user
string
Nombre de usuario con el que conectar a la base de datos si no se especificara ningún nombre.
ibase.default_password
string
Contraseña que se usará para conectar a la base de datos si no se especificara ninguna.
ibase.default_charset
string
Juego de caracteres a utilizar al conectar a una base de datos cuando no se especifique ninguno.
ibase.timestampformat
string
ibase.dateformat
string
ibase.timeformat
string
Estas directivas se usan para establecer el format de fecha y hora que se usarán las fechas y horas en los resultados, o al proporcionar un parámetro de fecha y hora.