Public Member Functions | |
virtual void | close ()=0 throw (DBM_error) |
Close the database connection. | |
virtual void | storerec (const Datum &key, const Datum &val, bool replace=true)=0 throw (DBM_error) |
Store a record. | |
virtual void | deleterec (const Datum &key)=0 throw (DBM_error) |
Delete a record. | |
virtual Datum * | fetchrec (const Datum &key)=0 throw (DBM_error) |
Fetch a record. | |
virtual Datum * | firstkey ()=0 throw (DBM_error) |
Get the first key. | |
virtual Datum * | nextkey ()=0 throw (DBM_error) |
Get the next key. | |
virtual bool | error ()=0 throw (DBM_error) |
Check whether an fatal error occured or not. | |
virtual void | clearerror ()=0 throw (DBM_error) |
Clear the error condition on the database. |
|
Clear the error condition on the database.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Close the database connection.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Delete a record.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Check whether an fatal error occured or not.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Fetch a record.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Get the first key.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Get the next key.
Implemented in qdbm::Curia, and qdbm::Depot. |
|
Store a record.
Implemented in qdbm::Curia, and qdbm::Depot. |