Berkeley DB backend for the key/value Store. https://en.wikipedia.org/wiki/Berkeley_DB
| Function | Description | Links |
|---|---|---|
| bdb_sdata_free() | Free Bdb Store Data | |
| bdb_sdata_new() | Create new Bdb Store Data | |
| dbt_empty_init() | Initialise an empty BDB thing | |
| dbt_init() | Initialise a BDB thing | |
| store_bdb_close() | Close a Store connection | StoreOps::close(), store_close |
| store_bdb_delete_record() | Delete a record from the Store | StoreOps::delete_record(), store_delete_record |
| store_bdb_fetch() | Fetch a Value from the Store | StoreOps::fetch(), store_fetch |
| store_bdb_free() | Free a Value returned by fetch() | StoreOps::free(), store_free |
| store_bdb_open() | Open a connection to a Store | StoreOps::open(), store_open |
| store_bdb_store() | Write a Value to the Store | StoreOps::store(), store_store |
| store_bdb_version() | Get a Store version string | StoreOps::version(), store_version |