Db::get |
#include <db_cxx.h>int Db::get(DbTxn *txnid, Dbt *key, Dbt *data, u_int32_t flags);
The Db::get method retrieves key/data pairs from the database. The address and length of the data associated with the specified key are returned in the structure referenced by data.
In the presence of duplicate key values, Db::get will return the first data item for the designated key. Duplicates are sorted by insert order except where this order has been overridden by cursor operations. Retrieval of duplicates requires the use of cursor operations. See Dbc::get for details.
If the file is being accessed under transaction protection, the txnid parameter is a transaction ID returned from DbEnv::txn_begin, otherwise, NULL.
The flags parameter must be set to 0 or one of the following values:
The data field of the specified key must be a pointer to a logical record number (i.e., a db_recno_t). This record number determines the record to be retrieved.
For DB_SET_RECNO to be specified, the underlying database must be of type Btree and it must have been created with the DB_RECNUM flag.
In addition, the following flag may be set by bitwise inclusively OR'ing it into the flags parameter:
As the Db::get interface will not hold locks across Berkeley DB interface calls in non-transactional environments, the DB_RMW flag to the Db::get call is only meaningful in the presence of transactions.
If the database is a Queue or Recno database and the requested key exists, but was never explicitly created by the application or was later deleted, the Db::get method returns DB_KEYEMPTY.
Otherwise, if the requested key is not in the database, the Db::get function returns DB_NOTFOUND.
Otherwise, the Db::get method either returns a non-zero error value or throws an exception that encapsulates a non-zero error value on failure, and returns 0 on success.
The Db::get method may fail and throw an exception or return a non-zero error for the following conditions:
A record number of 0 was specified.
The DB_THREAD flag was specified to the Db::open method and none of the DB_DBT_MALLOC, DB_DBT_REALLOC or DB_DBT_USERMEM flags were set in the Dbt.
The Db::get method may fail and throw an exception or return a non-zero error for errors specified for other Berkeley DB and C library or system methods. If a catastrophic error has occurred, the Db::get method may fail and either return DB_RUNRECOVERY or throw an exception encapsulating DB_RUNRECOVERY, in which case all subsequent Berkeley DB calls will fail in the same way.