Požadavky
You must install the FrontBase database server or at least the
fbsql client libraries to use this functions. You can get FrontBase
from http://www.frontbase.com/.
Instalace
In order to have these functions available, you must compile PHP with
fbsql support by using the --with-fbsql
option. If you use this option without specifying the path to fbsql,
PHP will search for the fbsql client libraries in the default
installation location for the platform. Users who installed FrontBase
in a non standard directory should always specify the path to fbsql:
--with-fbsql=/path/to/fbsql. This will
force PHP to use the client libraries installed by FrontBase, avoiding any
conflicts.
Konfigurace běhu
Chování těchto funkcí je ovlivněno nastavením parametrů v php.ini.
Tabulka 1. FrontBase configuration options
| Name | Default | Changeable |
|---|
| fbsql.allow_persistent | "1" | PHP_INI_SYSTEM |
| fbsql.generate_warnings | "0" | PHP_INI_SYSTEM |
| fbsql.autocommit | "1" | PHP_INI_SYSTEM |
| fbsql.max_persistent | "-1" | PHP_INI_SYSTEM |
| fbsql.max_links | "128" | PHP_INI_SYSTEM |
| fbsql.max_connections | "128" | PHP_INI_SYSTEM |
| fbsql.max_results | "128" | PHP_INI_SYSTEM |
| fbsql.batchSize | "1000" | PHP_INI_SYSTEM |
| fbsql.default_host | NULL | PHP_INI_SYSTEM |
| fbsql.default_user | "_SYSTEM" | PHP_INI_SYSTEM |
| fbsql.default_password | "" | PHP_INI_SYSTEM |
| fbsql.default_database | "" | PHP_INI_SYSTEM |
| fbsql.default_database_password | "" | PHP_INI_SYSTEM |
For further details and definition of the PHP_INI_* constants see
ini_set().
Předdefinované konstanty
Tyto konstanty jsou definovány tímto rozšířením a budou k dispozici pouze
tehdy, bylo-li rozšíření zkompilováno společně s PHP nebo dynamicky zavedeno
za běhu.