dba_close PHP 3.0.8

void dba_close(int handle)

 

Closes the database.

dba_delete PHP 3.0.8

bool dba_delete(string key, int handle)

 

Deletes the entry associated with key.

dba_exists PHP 3.0.8

bool dba_exists(string key, int handle)

 

Checks if the specified key exists.

dba_fetch PHP 3.0.8

string dba_fetch(string key, int handle)

 

Fetches the data associated with key.

dba_firstkey PHP 3.0.8

string dba_firstkey(int handle)

 

Resets the internal key pointer and returns the first key.

dba_insert PHP 3.0.8

bool dba_insert(string key, string value, int handle)

 

Inserts value as key; returns false if key exists already.

dba_nextkey PHP 3.0.8

string dba_nextkey(int handle)

 

Returns the next key.

dba_open PHP 3.0.8

int dba_open(string path, string mode, string handlername[, string ...])

 

Opens path using the specified handler in specified mode.

dba_optimize PHP 3.0.8

bool dba_optimize(int handle)

 

Optimizes database.

dba_popen PHP 3.0.8

int dba_popen(string path, string mode, string handlername[, string ...])

 

Opens path persistently using the specified handler in specified mode.

dba_replace PHP 3.0.8

bool dba_replace(string key, string value, int handle)

 

Inserts value as key; replaces key if key exists already.

dba_sync PHP 3.0.8

bool dba_sync(int handle)

 

Synchronizes database.