|
|
Dbc::get |
#include <db_cxx.h>int Dbc::get(Dbt *key, Dbt *data, u_int32_t flags);
int Dbc::pget(Dbt *key, Dbt *pkey, Dbt *data, u_int32_t flags);
The Dbc::get method retrieves key/data pairs from the database. The address and length of the key are returned in the object to which key refers (except for the case of the DB_SET flag, in which the key object is unchanged), and the address and length of the data are returned in the object to which data refers.
When called on a cursor opened on a database that has been made into a secondary index using the Db::associate method, the Dbc::get and Dbc::pget methods return the key from the secondary index and the data item from the primary database. In addition, the Dbc::pget method returns the key from the primary database. In databases that are not secondary indices, the Dbc::pget method will always fail.
Modifications to the database during a sequential scan will be reflected in the scan; that is, records inserted behind a cursor will not be returned while records inserted in front of a cursor will be returned.
In Queue and Recno databases, missing entries (that is, entries that were never explicitly created or that were created and then deleted) will be skipped during a sequential scan.
Unless otherwise specified, the Dbc::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.
If Dbc::get fails for any reason, the state of the cursor will be unchanged.
The Dbc::get method will return DB_KEYEMPTY if DB_CURRENT is set and the cursor key/data pair was deleted.
If the database is a Queue or Recno database, Dbc::get using the DB_FIRST flag will ignore any keys that exist but were never explicitly created by the application, or were created and later deleted.
The Dbc::get method will return DB_NOTFOUND if DB_FIRST is set and the database is empty.
When used with the Dbc::pget method version of this method on a secondary index handle, both the secondary and primary keys must be matched by the secondary and primary key item in the database. It is an error to use the DB_GET_BOTH flag with the Dbc::get version of this method and a cursor that has been opened on a secondary index handle.
For DB_GET_RECNO to be specified, the underlying database must be of type Btree, and it must have been created with the DB_RECNUM flag.
When called on a cursor opened on a database that has been made into a secondary index, the Dbc::get and Dbc::pget methods return the record number of the primary database in data. In addition, the Dbc::pget method returns the record number of the secondary index in pkey. If either underlying database is not of type Btree or is not created with the DB_RECNUM flag, the out-of-band record number of 0 is returned.
For DB_JOIN_ITEM to be specified, the underlying cursor must have been returned from the Db::join method.
If the database is a Queue or Recno database, Dbc::get using the DB_LAST flag will ignore any keys that exist but were never explicitly created by the application, or were created and later deleted.
The Dbc::get method will return DB_NOTFOUND if DB_LAST is set and the database is empty.
If the database is a Queue or Recno database, Dbc::get using the DB_NEXT flag will skip any keys that exist but were never explicitly created by the application, or those that were created and later deleted.
The Dbc::get method will return DB_NOTFOUND if DB_NEXT is set and the cursor is already on the last record in the database.
The Dbc::get method will return DB_NOTFOUND if DB_NEXT_DUP is set and the next key/data pair of the database is not a duplicate data record for the current key/data pair.
If the database is a Queue or Recno database, Dbc::get using the DB_NEXT_NODUP flag will ignore any keys that exist but were never explicitly created by the application, or those that were created and later deleted.
The Dbc::get method will return DB_NOTFOUND if DB_NEXT_NODUP is set and no non-duplicate key/data pairs occur after the cursor position in the database.
If the database is a Queue or Recno database, Dbc::get using the DB_PREV flag will skip any keys that exist but were never explicitly created by the application, or those that were created and later deleted.
The Dbc::get method will return DB_NOTFOUND if DB_PREV is set and the cursor is already on the first record in the database.
If the database is a Queue or Recno database, Dbc::get using the DB_PREV_NODUP flag will ignore any keys that exist but were never explicitly created by the application, or those that were created and later deleted.
The Dbc::get method will return DB_NOTFOUND if DB_PREV_NODUP is set and no non-duplicate key/data pairs occur before the cursor position in the database.
The Dbc::get method will return DB_NOTFOUND if DB_SET is set and no matching keys are found. The Dbc::get method will return DB_KEYEMPTY if DB_SET is set and the database is a Queue or Recno database, and the specified key exists, but was never explicitly created by the application or was later deleted. In the presence of duplicate key values, Dbc::get will return the first data item for the given key.
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 the case of Btree or Hash databases, duplicate data items for the current key, starting at the current cursor position, are entered into the buffer. Subsequent calls with both the DB_NEXT_DUP and DB_MULTIPLE flags specified will return additional duplicate data items associated with the current key or DB_NOTFOUND if there are no additional duplicate data items to return. Subsequent calls with both the DB_NEXT and DB_MULTIPLE flags specified will return additional duplicate data items associated with the current key or if there are no additional duplicate data items will return the next key and its data items or DB_NOTFOUND if there are no additional keys in the database.
In the case of Queue or Recno databases, data items starting at the current cursor position are entered into the buffer. The record number of the first record will be returned in the key parameter. The record number of each subsequent returned record must be calculated from this value. Subsequent calls with the DB_MULTIPLE flag specified will return additional data items or DB_NOTFOUND if there are no additional data items to return.
The buffer to which the data parameter refers must be provided from user memory (see DB_DBT_USERMEM). The buffer must be at least as large as the page size of the underlying database, aligned for unsigned integer access, and be a multiple of 1024 bytes in size. If the buffer size is insufficient, then upon return from the call the size field of the data parameter will have been set to an estimated buffer size, and the error DB_BUFFER_SMALL is returned. (The size is an estimate as the exact size needed may not be known until all entries are read. It is best to initially provide a relatively large buffer, but applications should be prepared to resize the buffer as necessary and repeatedly call the method.)
The multiple data items can be iterated over using the DbMultipleDataIterator class.
The DB_MULTIPLE flag may only be used with the DB_CURRENT, DB_FIRST, DB_GET_BOTH, DB_GET_BOTH_RANGE, DB_NEXT, DB_NEXT_DUP, DB_NEXT_NODUP, DB_SET, DB_SET_RANGE, and DB_SET_RECNO options. The DB_MULTIPLE flag may not be used when accessing databases made into secondary indices using the Db::associate method.
Key and data pairs, starting at the current cursor position, are entered into the buffer. Subsequent calls with both the DB_NEXT and DB_MULTIPLE_KEY flags specified will return additional key and data pairs or DB_NOTFOUND if there are no additional key and data items to return.
In the case of Btree or Hash databases, the multiple key and data pairs can be iterated over using the DbMultipleKeyDataIterator class.
In the case of Queue or Recno databases, the multiple record number and data pairs can be iterated over using the DbMultipleRecnoDataIterator class.
The buffer to which the data parameter refers must be provided from user memory (see DB_DBT_USERMEM). The buffer must be at least as large as the page size of the underlying database, aligned for unsigned integer access, and be a multiple of 1024 bytes in size. If the buffer size is insufficient, then upon return from the call the size field of the data parameter will have been set to an estimated buffer size, and the error DB_BUFFER_SMALL is returned. (The size is an estimate as the exact size needed may not be known until all entries are read. It is best to initially provide a relatively large buffer, but applications should be prepared to resize the buffer as necessary and repeatedly call the method.)
The DB_MULTIPLE_KEY flag may only be used with the DB_CURRENT, DB_FIRST, DB_GET_BOTH, DB_GET_BOTH_RANGE, DB_NEXT, DB_NEXT_DUP, DB_NEXT_NODUP, DB_SET, DB_SET_RANGE, and DB_SET_RECNO options. The DB_MULTIPLE_KEY flag may not be used when accessing databases made into secondary indices using the Db::associate method.
The Dbc::get method may fail and throw DbException, encapsulating one of the following non-zero errors, or return one of the following non-zero errors:
If the requested item could not be returned due to undersized buffer, the Dbc::get method will fail and either return DB_BUFFER_SMALL or throw a DbMemoryException exception.
If a transactional database environment operation was selected to resolve a deadlock, the Dbc::get method will fail and either return DB_LOCK_DEADLOCK or throw a DbDeadlockException exception.
If a Berkeley DB Concurrent Data Store database environment configured for lock timeouts was unable to grant a lock in the allowed time, the Dbc::get method will fail and either return DB_LOCK_NOTGRANTED or throw a DbLockNotGrantedException exception.
Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.