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:

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_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_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_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_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_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:

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_undo

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

dbplus_tremove

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Remove tuple and return new current tuple int dbplus_tremove ( resource $relation, array $tuple [, array &$current ] ) dbplus_tremove() removes tuple from relation if it perfectly matches a tuple within the relation. current, if given, will contain the data of the new current tuple after calling dbplus_tremove(). Parameters: relation