dbx_escape_string

(PHP 4 >= 4.3.0, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Escape a string so it can safely be used in an sql-statement string dbx_escape_string ( object $link_identifier, string $text ) Escape the given string so that it can safely be used in an sql-statement. Parameters: link_identifier The DBX link object returned by dbx_connect() text

dbx_connect

(PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Open a connection/database object dbx_connect ( mixed $module, string $host, string $database, string $username, string $password [, int $persistent ] ) Opens a connection to a database. Parameters: module The module parameter can be either a string or a constant, though the latter form is preferred. The possibl

dba_optimize

(PHP 4, PHP 5, PHP 7) Optimize database bool dba_optimize ( resource $handle ) dba_optimize() optimizes the underlying database. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE on success or FALSE on failure. See also:

dba_open

(PHP 4, PHP 5, PHP 7) Open database resource dba_open ( string $path, string $mode [, string $handler [, mixed $... ]] ) dba_open() establishes a database instance for path with mode using handler. Parameters: path Commonly a regular path in your filesystem. mode It is r for read access, w for read/write access to an already existing da

dbx_compare

(PHP 4 >= 4.1.0, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Compare two rows for sorting purposes int dbx_compare ( array $row_a, array $row_b, string $column_key [, int $flags = DBX_CMP_ASC | DBX_CMP_NATIVE ] ) dbx_compare() is a helper function for dbx_sort() to ease the make and use of the custom sorting function. Parameters: row_a First row ro

dbx_close

(PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Close an open connection/database int dbx_close ( object $link_identifier ) Parameters: link_identifier The DBX link object to close. Returns: Returns 1 on success and 0 on errors. Notes: Always refer to the module-specific documentat

dba_popen

(PHP 4, PHP 5, PHP 7) Open database persistently resource dba_popen ( string $path, string $mode [, string $handler [, mixed $... ]] ) dba_popen() establishes a persistent database instance for path with mode using handler. Parameters: path Commonly a regular path in your filesystem. mode It is r for read access, w for read/write access

dba_nextkey

(PHP 4, PHP 5, PHP 7) Fetch next key string dba_nextkey ( resource $handle ) dba_nextkey() returns the next key of the database and advances the internal key pointer. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns the key on success or FALSE on failure.

dba_sync

(PHP 4, PHP 5, PHP 7) Synchronize database bool dba_sync ( resource $handle ) dba_sync() synchronizes the database. This will probably trigger a physical write to the disk, if supported. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE on success or FALSE on failure.

dba_replace

(PHP 4, PHP 5, PHP 7) Replace or insert entry bool dba_replace ( string $key, string $value, resource $handle ) dba_replace() replaces or inserts the entry described with key and value into the database specified by handle. Parameters: key The key of the entry to be replaced. value The value to be replaced. handle