Configuración en tiempo de ejecución
El comportamiento de estas funciones está afectado por los valores definidos en php.ini.
| Name | Default | Changeable | Changelog |
|---|---|---|---|
| odbc.default_db * | NULL | PHP_INI_ALL | |
| odbc.default_user * | NULL | PHP_INI_ALL | |
| odbc.default_pw * | NULL | PHP_INI_ALL | |
| odbc.allow_persistent | "1" | PHP_INI_SYSTEM | |
| odbc.check_persistent | "1" | PHP_INI_SYSTEM | |
| odbc.max_persistent | "-1" | PHP_INI_SYSTEM | |
| odbc.max_links | "-1" | PHP_INI_SYSTEM | |
| odbc.defaultlrl | "4096" | PHP_INI_ALL | |
| odbc.defaultbinmode | "1" | PHP_INI_ALL |
For further details and definitions of the PHP_INI_* constants, see the php.ini directives.Note: Entries marked with * are not implemented yet.
A continuación se presenta una corta explicación de las directivas de configuración.
- 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.
Cuando se usa un número entero, el valor del mismo es medido en bytes. También se puede usar la notación reducida tal como se describe en esta FAQ. - odbc.defaultbinmode integer
-
Handling of binary data.
Configuración en tiempo de ejecución
