Forum und email

FrontBase Funktionen

Einführung

Über diese Funktionen können Sie auf FrontBase Datenbank-Server zugreifen. Weiterführende Informationen über FrontBase erhalten Sie unter » https://www.frontbase.com/.

Die FrontBase-Dokumentation finden Sie unter » https://www.frontbase.com/cgi-bin/WebObjects/FrontBase.woa/wa/productsPage?currentPage=Documentation.

Die FrontBase-Unterstützung wurde in PHP 4.0.6 eingeführt.

Anforderungen

Sie müssen den FrontBase Datenbank-Server oder die fbsql-Client-Bibliotheken installieren, um die Funktionen nutzen zu können. FrontBase können Sie über » https://www.frontbase.com/ bekommen.

Installation

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.

Laufzeit Konfiguration

Das Verhalten dieser Funktionen wird durch Einstellungen in der php.ini beeinflusst.

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 Available since PHP 4.2.0. Removed in PHP 5.1.0.
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.
Weitere Details und die Definitionen der PHP_INI_*-Konstanten finden Sie im php.ini Einstellungen.

Resource Typen

Vordefinierte Konstanten

Folgende Konstanten werden von dieser Erweiterung definiert und stehen nur zur Verfügung, wenn die Erweiterung entweder statisch in PHP kompiliert oder dynamisch zur Laufzeit geladen wurde.

FBSQL_ASSOC (integer)
FBSQL_NUM (integer)
FBSQL_BOTH (integer)
FBSQL_LOCK_DEFERRED (integer)
FBSQL_LOCK_OPTIMISTIC (integer)
FBSQL_LOCK_PESSIMISTIC (integer)
FBSQL_ISO_READ_UNCOMMITTED (integer)
FBSQL_ISO_READ_COMMITTED (integer)
FBSQL_ISO_REPEATABLE_READ (integer)
FBSQL_ISO_SERIALIZABLE (integer)
FBSQL_ISO_VERSIONED (integer)
FBSQL_UNKNOWN (integer)
FBSQL_STOPPED (integer)
FBSQL_STARTING (integer)
FBSQL_RUNNING (integer)
FBSQL_STOPPING (integer)
FBSQL_NOEXEC (integer)
FBSQL_LOB_DIRECT (integer)
FBSQL_LOB_HANDLE (integer)

Inhaltsverzeichnis