|
użytkowników online: 26
|
OPINIE UŻYTKOWNIKÓW
|
Porady zamieszczone tutaj przez Darka są pomocne w wielu chwilach. Wielokrotnie tworząc jakiś złożony serwis korzystam z tych porad. Można by tworzyć samemu te skrypty, ale tak naprawdę czy nie lepiej jest wziąć skrypt z tej strony i zmodyfikowac go dla swoich potrzeb? Wprawdzie możemy taki skrypt napisać sami, ale po co, skoro stracimy czas na coś, co ktoś juz napisał, przetestował i może zagwarantować, że działa poprawnie. Któryś raz z rzędu opłacam abonament i nie raz jeszcze opłacę. Kawał dobrej roboty i ogrom wiedzy w jednym miejscu.
Piotr Karamański Design Studio
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
XXXIV. FrontBase Functions
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/.
In order to have these functions available, you must compile PHP with
fbsql support by using the
--with-fbsql[=DIR] 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.
Na działanie tych funcji wpływają ustawienia zawarte w pliku
php.ini.
Tabela 1. FrontBase configuration options | Name | Default | Changeable | Changelog |
|---|
| fbsql.allow_persistent | "1" | PHP_INI_SYSTEM | Available since PHP 4.2.0. | | fbsql.generate_warnings | "0" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.autocommit | "1" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.max_persistent | "-1" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.max_links | "128" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.max_connections | "128" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.max_results | "128" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.batchSize | "1000" | PHP_INI_SYSTEM | | | fbsql.default_host | NULL | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.default_user | "_SYSTEM" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.default_password | "" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.default_database | "" | PHP_INI_SYSTEM | Available since PHP 4.0.6. | | fbsql.default_database_password | "" | PHP_INI_SYSTEM | Available since PHP 4.0.6. |
Szczegóły i definicje dotyczące stałych
PHP_INI_* znajdują się w rozdziale Dodatek H.
Poniższe stałe są zdefiniowane w tym rozszerzeniu i stają się dostępne, gdy
rozszerzenie jest dokompilowane do PHP, lub załadowane dynamicznie przy starcie.
User Contributed NotesThere are no user contributed notes for this page
|