|
Berkeley DB Java Edition version 1.5.1 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.sleepycat.je.Cursor
A database cursor. Cursors are used for operating on collections of records, for iterating over a database, and for saving handles to individual records, so that they can be modified after they have been read. They are the only way to access individual duplicate data items.
Cursors may be used by multiple threads, but only serially. That is, the application must serialize access to the handle.
If the cursor is to be used to perform operations on behalf of a transaction, the cursor must be opened and closed within the context of that single transaction.
To obtain a cursor with default attributes:
Cursor cursor = myDatabase.openCursor(txn, null);To customize the attributes of a cursor, use a CursorConfig object.
CursorConfig config = new CursorConfig(); config.setDirtyRead(true); Cursor cursor = myDatabase.openCursor(txn, config);
Method Summary | |
void |
close()
Discard the cursor. |
int |
count()
Return a count of the number of data items for the key to which the cursor refers. |
OperationStatus |
delete()
Delete the key/data pair to which the cursor refers. |
Cursor |
dup(boolean samePosition)
Return a new cursor for the same transaction as the original cursor. |
CursorConfig |
getConfig()
Return this object's configuration. |
OperationStatus |
getCurrent(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Returns the key/data pair to which the cursor refers. |
Database |
getDatabase()
Return the Database handle associated with this Cursor. |
OperationStatus |
getFirst(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the first key/data pair of the database, and returns that pair. |
OperationStatus |
getLast(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the last key/data pair of the database, and returns that pair. |
OperationStatus |
getNext(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the next key/data pair and returns that pair. |
OperationStatus |
getNextDup(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
If the next key/data pair of the database is a duplicate data record for the current key/data pair, moves the cursor to the next key/data pair of the database and returns that pair. |
OperationStatus |
getNextNoDup(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the next non-duplicate key/data pair and returns that pair. |
OperationStatus |
getPrev(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the previous key/data pair and returns that pair. |
OperationStatus |
getPrevDup(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
If the previous key/data pair of the database is a duplicate data record for the current key/data pair, moves the cursor to the previous key/data pair of the database and returns that pair. |
OperationStatus |
getPrevNoDup(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the previous non-duplicate key/data pair and returns that pair. |
OperationStatus |
getSearchBoth(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the specified key/data pair, that is, both the key and data items must match. |
OperationStatus |
getSearchBothRange(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the specified key and closest matching data item of the database. |
OperationStatus |
getSearchKey(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the given key of the database, and returns the datum associated with the given key. |
OperationStatus |
getSearchKeyRange(DatabaseEntry key,
DatabaseEntry data,
LockMode lockMode)
Moves the cursor to the closest matching key of the database, and returns the datum associated with the matching key. |
OperationStatus |
put(DatabaseEntry key,
DatabaseEntry data)
Store a key/data pair into the database. |
OperationStatus |
putCurrent(DatabaseEntry data)
Store a key/data pair into the database. |
OperationStatus |
putNoDupData(DatabaseEntry key,
DatabaseEntry data)
Store a key/data pair into the database. |
OperationStatus |
putNoOverwrite(DatabaseEntry key,
DatabaseEntry data)
Store a key/data pair into the database. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public Database getDatabase()
public CursorConfig getConfig()
This may differ from the configuration used to open this object if the cursor existed previously.
DatabaseException
- if a failure occurs.public void close() throws DatabaseException
DatabaseException
- if a failure occurs.public int count() throws DatabaseException
DatabaseException
- if a failure occurs.public Cursor dup(boolean samePosition) throws DatabaseException
samePosition
- If true, the newly created cursor is initialized to refer to the
same position in the database as the original cursor and hold the
same locks. If false, the created cursor is uninitialized and will
behave like a cursor newly created using openCursor
.
DatabaseException
- if a failure occurs.public OperationStatus delete() throws DatabaseException
The key/data pair is also deleted from any associated secondary databases.
The cursor position is unchanged after a delete, and subsequent calls to cursor functions expecting the cursor to refer to an existing key will fail.
DeadlockException
- if the operation was selected to resolve a
deadlock.
DatabaseException
- if a failure occurs.public OperationStatus put(DatabaseEntry key, DatabaseEntry data) throws DatabaseException
If put succeeds, the cursor is always positioned to refer to the newly inserted item. If put fails for any reason, the state of the cursor will be unchanged.
If the key already appears in the database and duplicates are supported, the new data value is inserted at the correct sorted location. If the key already appears in the database and duplicates are not supported, the existing key/data pair will be replaced.
key
- the key DatabaseEntry
operated on.
data
- the data DatabaseEntry
stored.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.public OperationStatus putNoOverwrite(DatabaseEntry key, DatabaseEntry data) throws DatabaseException
If putNoOverwrite succeeds, the cursor is always positioned to refer to the newly inserted item. If putNoOverwrite fails for any reason, the state of the cursor will be unchanged.
If the key already appears in the database, putNoOverwrite will return
KEYEXIST
.
key
- the key DatabaseEntry
operated on.
data
- the data DatabaseEntry
stored.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.public OperationStatus putNoDupData(DatabaseEntry key, DatabaseEntry data) throws DatabaseException
If putNoDupData succeeds, the cursor is always positioned to refer to the newly inserted item. If putNoDupData fails for any reason, the state of the cursor will be unchanged.
If as key/data pair comparing equally to it already exists in
the database return KEYEXIST
.
key
- the key DatabaseEntry
operated on.
data
- the data DatabaseEntry
stored.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.public OperationStatus putCurrent(DatabaseEntry data) throws DatabaseException
If putCurrent succeeds, the cursor is always positioned to refer to the newly inserted item. If putCurrent fails for any reason, the state of the cursor will be unchanged.
Overwrite the data of the key/data pair to which the cursor refers with the specified data item.
data
- the data DatabaseEntry
stored.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.public OperationStatus getCurrent(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
KEYEMPTY
if the key/pair at the cursor
position has been deleted; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getFirst(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getLast(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getNext(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If the cursor is not yet initialized, move the cursor to the first key/data pair of the database, and return that pair. Otherwise, the cursor is moved 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.
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getNextDup(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getNextNoDup(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If the cursor is not yet initialized, move the cursor to the first key/data pair of the database, and return that pair. Otherwise, the cursor is moved to the next non-duplicate key of the database, and that key/data pair is returned.
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getPrev(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If the cursor is not yet initialized, move the cursor to the last key/data pair of the database, and return that pair. Otherwise, the cursor is moved 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.
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getPrevDup(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getPrevNoDup(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If the cursor is not yet initialized, move the cursor to the last key/data pair of the database, and return that pair. Otherwise, the cursor is moved to the previous non-duplicate key of the database, and that key/data pair is returned.
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
returned as output. Its byte array does not need to be initialized by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getSearchKey(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
used as input. It must be initialized with a non-null byte array by the
caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getSearchKeyRange(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
The returned key/data pair is for the smallest key greater than or equal to the specified key (as determined by the key comparison function), permitting partial key matches and range searches.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
used as input and returned as output. It must be initialized with a non-null
byte array by the caller.
data
- the data
returned as output. Its byte array does not need to be initialized by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getSearchBoth(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
used as input. It must be initialized with a non-null byte array by the
caller.
data
- the data
used as input. It must be initialized with a non-null byte array by the
caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
public OperationStatus getSearchBothRange(DatabaseEntry key, DatabaseEntry data, LockMode lockMode) throws DatabaseException
In the case of any database supporting sorted duplicate sets, the returned key/data pair is for the smallest data item greater than or equal to the specified data item (as determined by the duplicate comparison function), permitting partial matches and range searches in duplicate data sets.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key
used as input. It must be initialized with a non-null byte array by the
caller.
data
- the data
used as input and returned as output. It must be initialized with a non-null
byte array by the caller.
lockMode
- the locking attributes; if null, default attributes are used.
NOTFOUND
if no matching key/data pair is
found; otherwise, SUCCESS
.
NullPointerException
- if a DatabaseEntry
parameter is null
or does not contain a required non-null byte array.
DeadlockException
- if the operation was selected to resolve a
deadlock.
IllegalArgumentException
- if an invalid parameter was specified.
DatabaseException
- if a failure occurs.
|
Berkeley DB Java Edition version 1.5.1 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |