NAME ^

php_dbase.pir - PHP dbase Library

DESCRIPTION ^

Functions ^

bool dbase_add_record(int identifier, array data)

Adds a record to the database

NOT IMPLEMENTED.

bool dbase_close(int identifier)

Closes an open dBase-format database file

NOT IMPLEMENTED.

bool dbase_create(string filename, array fields)

Creates a new dBase-format database file

NOT IMPLEMENTED.

bool dbase_delete_record(int identifier, int record)

Marks a record to be deleted

NOT IMPLEMENTED.

array dbase_get_header_info(int database_handle)

NOT IMPLEMENTED.

array dbase_get_record(int identifier, int record)

Returns an array representing a record from the database

NOT IMPLEMENTED.

array dbase_get_record_with_names(int identifier, int record)

Returns an associative array representing a record from the database

NOT IMPLEMENTED.

int dbase_numfields(int identifier)

Returns the number of fields (columns) in the database

NOT IMPLEMENTED.

int dbase_numrecords(int identifier)

Returns the number of records in the database

NOT IMPLEMENTED.

int dbase_open(string name, int mode)

Opens a dBase-format database file

NOT IMPLEMENTED.

bool dbase_pack(int identifier)

Packs the database (deletes records marked for deletion)

NOT IMPLEMENTED.

bool dbase_replace_record(int identifier, array data, int recnum)

Replaces a record to the database

NOT IMPLEMENTED.


parrot