ee,hash,hashing,transaction,transactions,locking,logging,access method,access me thods,java,C,C++">

Dbc.get


import com.sleepycat.db.*;

public int get(Dbt key, Dbt data, int flags) throws DbException;

Description

The Dbc.get method retrieves key/data pairs from the database. The byte array and length of the key are returned in the object referenced by key (except for the case of the DB_SET flag where the key object is unchanged), and the address and length of the data are returned in the object referenced by data.

Modifications to the database during a sequential scan will be reflected in the scan, i.e. records inserted behind a cursor will not be returned while records inserted in front of a cursor will be returned.

In Recno databases, missing entries (i.e., entries that were never explicitly created or that were created and then deleted), will be skipped during a sequential scan.

If multiple threads or processes insert items into the same database file without using locking, the results are undefined. For more detail, see cursor stability.

The flags parameter must be set to one of the following values:

Db.DB_FIRST
The cursor is set to reference the first key/data pair of the database, and that pair is returned. In the presence of duplicate key values, the first data item in the set of duplicates is returned.

If the database is a Recno database, Dbc.get using the Db.DB_FIRST flag will skip any keys that exist but were never explicitly created by the application or were created and later deleted.

If the database is empty, Dbc.get will return DB_NOTFOUND.

Db.DB_LAST
The cursor is set to reference the last key/data pair of the database, and that pair is returned. In the presence of duplicate key values, the last data item in the set of duplicates is returned.

If the database is a Recno database, Dbc.get using the Db.DB_LAST flag will skip any keys that exist but were never explicitly created by the application or were created and later deleted.

If the database is empty, Dbc.get will return DB_NOTFOUND.

Db.DB_NEXT
If the cursor is not yet initialized, DB_NEXT is identical to DB_FIRST.

Otherwise, move the cursor to the next key/data pair of the database, and that pair is returned. In the presence of duplicate key values, the value of the key may not change.

If the database is a Recno database, Dbc.get using the Db.DB_NEXT flag will skip any keys that exist but were never explicitly created by the application or were created and later deleted.

If the cursor is already on the last record in the database, Dbc.get will return DB_NOTFOUND.

Db.DB_NEXT_DUP
If the next key/data pair of the database is a duplicate record for the current key/data pair, move the cursor to the next key/data pair of the database, and that pair is returned. Otherwise, Dbc.get will return DB_NOTFOUND.

If the cursor is not yet initialized, the Dbc.get method throws an exception that encapsulates EINVAL.

Db.DB_PREV
If the cursor is not yet initialized, DB_PREV is identical to DB_LAST.

Otherwise, move the cursor to the previous key/data pair of the database, and that pair is returned. In the presence of duplicate key values, the value of the key may not change.

If the database is a Recno database, Dbc.get using the Db.DB_PREV flag will skip any keys that exist but were never explicitly created by the application or were created and later deleted.

If the cursor is already on the first record in the database, Dbc.get will return DB_NOTFOUND.

Db.DB_CURRENT
Return the key/data pair currently referenced by the cursor.

If the cursor key/data pair was deleted, Dbc.get will return DB_KEYEMPTY.

If the cursor is not yet initialized, the Dbc.get method throws an exception that encapsulates EINVAL.

Db.DB_SET
Move the cursor to the specified key/data pair of the database, and return the datum associated with the given key.

In the presence of duplicate key values, Dbc.get will return the first data item for the given key.

If the database is a Recno database and the requested key exists, but was never explicitly created by the application or was later deleted, Dbc.get will return DB_KEYEMPTY.

If no matching keys are found, Dbc.get will return DB_NOTFOUND.

Db.DB_SET_RANGE
The DB_SET_RANGE flag is identical to the DB_SET flag, except that the key is returned as well as the data item, and, in the case of the btree access method, the returned key/data pair is the smallest key greater than or equal to the specified key (as determined by the comparison method), permitting partial key matches and range searches.

Db.DB_GET_BOTH
The DB_GET_BOTH flag is identical to the DB_SET flag, except that both the key and the data arguments must be matched by the key and data item in the database.

Db.DB_SET_RECNO
Move the cursor to the specific numbered record of the database, and return the associated key/data pair. The data field of the specified key must be a byte array containing a record number, as described in Dbt. This 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.DB_RECNUM flag.

Db.DB_GET_RECNO
Return the record number associated with the cursor. The record number will be returned in data as described in Dbt. The key parameter is ignored.

For DB_GET_RECNO to be specified, the underlying database must be of type btree and it must have been created with the Db.DB_RECNUM flag.

In addition, the following value may be set by logically OR'ing it into the flags parameter:

DB_RMW
Acquire write locks instead of read locks when doing the retrieval. Setting this flag may decrease the likelihood of deadlock during a read-modify-write cycle by immediately acquiring the write lock during the read part of the cycle so that another thread of control acquiring a read lock for the same item, in its own read-modify-write cycle, will not result in deadlock.

Otherwise, the Dbc.get method throws an exception that encapsulates an errno on failure.

If Dbc.get fails for any reason, the state of the cursor will be unchanged.

Errors

If a fatal error occurs in Berkeley DB, the Dbc.get method may fail and throw a DbRunRecoveryException, at which point all subsequent database calls will also fail in the same way.

The Dbc.get method may fail and throw an exception for any of the errors specified for the following Berkeley DB and C library functions: __account_page(3), abort(3), dbenv->db_paniccall(3), dbp->dup_compare(3), fflush(3), fprintf(3), free(3), func(3), hcp->dbc->dbp->h_hash(3), DbLockTab.get, DbLock.put, DbLockTab.vec, DbLog.put, malloc(3), memcmp(3), memcpy(3), memmove(3), DbMpoolFile.get, DbMpoolFile.put, DbMpoolFile.set, memset(3), realloc(3), strerror(3), vfprintf(3), and vsnprintf(3).

In addition, the Dbc.get method may fail and throw an exception encapsulating errno for the following conditions:

EAGAIN
A lock was unavailable.

EINVAL
An invalid flag value or parameter was specified.

The specified cursor was not currently initialized.

The Db.DB_THREAD flag was specified to Db.open and neither the Db.DB_DBT_MALLOC or Db.DB_DBT_USERMEM flags were set in the Dbt.

Class

Dbc

See Also

Dbc.close, Dbc.del, Dbc.get and Dbc.put.