dbase_close

(PHP 4, PHP 5, PHP 7) Closes a database bool dbase_close ( int $dbase_identifier ) Closes the given database link identifier. Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create(). Returns: Returns TRUE on success or FALSE on failure. Examples:

dbplus_unlockrel

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Give up write lock on relation int dbplus_unlockrel ( resource $relation ) Release a write lock previously obtained by dbplus_lockrel(). Parameters: relation A relation opened by dbplus_open(). Returns:

dbase_add_record

(PHP 4, PHP 5, PHP 7) Adds a record to a database bool dbase_add_record ( int $dbase_identifier, array $record ) Adds the given data to the database. Parameters: dbase_identifier The database link identifier, returned by dbase_open() or dbase_create(). record An indexed array of data. The number of items must be equal to the number of f

dbplus_update

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Update specified tuple in relation int dbplus_update ( resource $relation, array $old, array $new ) dbplus_update() replaces the old tuple with the data from the new one, only if the old completely matches a tuple within relation. Parameters: relation A relation opened by dbplus_open(). old The

dbplus_xlockrel

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Request exclusive lock on relation int dbplus_xlockrel ( resource $relation ) Request an exclusive lock on relation preventing even read access from other clients. Parameters: relation A relation opened by dbplus_open(). Returns: See also:

dbplus_undoprepare

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Prepare undo int dbplus_undoprepare ( resource $relation ) Parameters: relation A relation opened by dbplus_open(). Returns: This function is currently not documented; only its argument list is available.

dbplus_unselect

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Remove a constraint from relation int dbplus_unselect ( resource $relation ) Calling dbplus_unselect() will remove a constraint previously set by dbplus_find() on relation. Parameters: relation A relation opened by dbplus_open(). Returns:

dbplus_xunlockrel

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Free exclusive lock on relation int dbplus_xunlockrel ( resource $relation ) Releases an exclusive lock previously obtained by dbplus_xlockrel(). Parameters: relation A relation opened by dbplus_open(). Returns:

dbplus_rzap

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Remove all tuples from relation int dbplus_rzap ( resource $relation ) dbplus_rzap() will remove all tuples from relation. Parameters: relation A relation opened by dbplus_open(). Returns:

dbplus_tcl

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Execute TCL code on server side string dbplus_tcl ( int $sid, string $script ) A db++ server will prepare a TCL interpreter for each client connection. This interpreter will enable the server to execute TCL code provided by the client as a sort of stored procedures to improve the performance of database operations by avoiding client/server data transfers and context switches. dbpl