public class SCursor extends java.lang.Object implements GetHelper, PutHelper, java.lang.AutoCloseable
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.
If you do not close the cursor before closing the database handle or the transaction handle that owns this cursor, then, closing a database handle or a transaction handle closes these open cursors. Once the cursor close method has been called, the handle may not be accessed again, regardless of the close method's success or failure.
To obtain a cursor with default attributes:
SCursor cursor = myDatabase.openCursor(txn, null);To customize the attributes of a cursor, use a
SCursorConfig
object.
SCursorConfig config = new SCursorConfig(); config.setDirtyRead(true); SCursor cursor = myDatabase.openCursor(txn, config);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 ignored during a sequential scan.
GetHelper.RemoteGetFunction, GetHelper.RemotePGetFunction
PutHelper.RemotePutFunction
Modifier and Type | Field and Description |
---|---|
protected BdbService.Client |
client
The remote service client.
|
protected TCursor |
tCursor
The remote cursor handle.
|
Modifier | Constructor and Description |
---|---|
protected |
SCursor(TCursor tCursor,
SDatabase database,
STransaction txn,
BdbService.Client client) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Discard the cursor.
|
int |
compare(SCursor otherCursor)
Return a comparison of the two cursors.
|
int |
count()
Return a count of the number of data items for the key to which the
cursor refers.
|
protected TCursorGetConfig |
createConfig(SDatabaseEntryBase data,
SLockMode lockMode) |
SOperationStatus |
delete()
Delete the key/data pair to which the cursor refers.
|
SCursor |
dup(boolean samePosition)
Creates a new cursor that uses the same transaction and locker ID as the
original cursor.
|
SCursorConfig |
getConfig()
Return this cursor's configuration.
|
SOperationStatus |
getCurrent(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Returns the key/data pair to which the cursor refers.
|
SDatabase |
getDatabase()
Return the
SDatabase handle associated with this cursor. |
SOperationStatus |
getFirst(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the first key/data pair of the database, and return
that pair.
|
SOperationStatus |
getLast(SDatabaseEntry key,
SDatabaseEntry data,
SLockMode lockMode)
Move the cursor to the last key/data pair of the database, and return
that pair.
|
SOperationStatus |
getNext(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the next key/data pair and return that pair.
|
SOperationStatus |
getNextDup(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
If the next key/data pair of the database is a duplicate data record for
the current key/data pair, move the cursor to the next key/data pair of
the database and return that pair.
|
SOperationStatus |
getNextNoDup(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the next non-duplicate key/data pair and return that
pair.
|
SOperationStatus |
getPrev(SDatabaseEntry key,
SDatabaseEntry data,
SLockMode lockMode)
Move the cursor to the previous key/data pair and return that pair.
|
SOperationStatus |
getPrevDup(SDatabaseEntry key,
SDatabaseEntry data,
SLockMode lockMode)
If the previous key/data pair of the database is a duplicate data record
for the current key/data pair, move the cursor to the previous key/data
pair of the database and return that pair.
|
SOperationStatus |
getPrevNoDup(SDatabaseEntry key,
SDatabaseEntry data,
SLockMode lockMode)
Move the cursor to the previous non-duplicate key/data pair and return
that pair.
|
SCacheFilePriority |
getPriority()
Get the cache priority for pages referenced by the cursor.
|
SOperationStatus |
getRecordNumber(SDatabaseEntry data,
SLockMode lockMode)
Return the record number associated with the cursor.
|
SOperationStatus |
getSearchBoth(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the specified key/data pair, where both the key and
data items must match.
|
SOperationStatus |
getSearchBothRange(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the specified key and matching data item of the
database.
|
SOperationStatus |
getSearchKey(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the given key of the database, and return the datum
associated with the given key.
|
SOperationStatus |
getSearchKeyRange(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the closest matching key of the database, and return
the data item associated with the matching key.
|
SOperationStatus |
getSearchRecordNumber(SDatabaseEntry key,
SDatabaseEntryBase data,
SLockMode lockMode)
Move the cursor to the specific numbered record of the database, and
return the associated key/data pair.
|
java.util.Set<SSecondaryDatabase> |
getSecondaryDatabases()
Return the set of secondary databases associated with this primary
database.
|
default <V> V |
handleRuntimeExceptions(com.sleepycat.client.RemoteServiceCallable<V> remote) |
SOperationStatus |
put(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
SOperationStatus |
putAfter(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
SOperationStatus |
putBefore(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
SOperationStatus |
putCurrent(SDatabaseEntry data)
Replaces the data in the key/data pair at the current cursor position.
|
SOperationStatus |
putKeyFirst(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
SOperationStatus |
putKeyLast(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
SOperationStatus |
putNoDupData(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
SOperationStatus |
putNoOverwrite(SDatabaseEntry key,
SDatabaseEntry data)
Store a key/data pair into the database.
|
default <V> V |
remoteCall(com.sleepycat.client.RemoteServiceCallable<V> remote) |
default <V> V |
remoteCallWithIOException(com.sleepycat.client.RemoteServiceCallable<V> remote) |
void |
setPriority(SCacheFilePriority priority)
Set the cache priority for pages referenced by this cursor handle.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
createGetSearchTerm, createPGetSearchTerm, remoteGet, remotePGet, updateKeyData, updateTuple
calculateSKey, remotePut
protected final TCursor tCursor
protected final BdbService.Client client
protected SCursor(TCursor tCursor, SDatabase database, STransaction txn, BdbService.Client client)
public void close() throws SDatabaseException
After the close method has been called, you cannot use the cursor handle again.
It is not required to close the cursor explicitly before closing the database handle or the transaction handle that owns this cursor because closing a database handle or transaction handle closes those open cursor.
However, it is recommended that you always close all cursor handles immediately after their use to promote concurrency and to release resources such as page locks.
close
in interface java.lang.AutoCloseable
SDatabaseException
- if any error occurspublic int compare(SCursor otherCursor) throws SDatabaseException
otherCursor
- the other cursor to be comparedotherCursor
(another cursor handle used as the
comparator). 0 indicates that this cursor and otherCursor
are
positioned on the same item, 1 indicates this cursor is greater than
otherCursor
, -1 indicates that otherCursor
is greater
than this cursor.SDatabaseException
- if any error occurspublic int count() throws SDatabaseException
SDatabaseException
- if any error occurspublic SCursor dup(boolean samePosition) throws SDatabaseException
This is useful when an application is using locking and requires two or more cursors in the same thread of control.
samePosition
- if true, the newly created cursor is initialized to
refer to the same position in the database as the original cursor (if
any) and hold the same locks (if any). If false, or the original cursor
does not hold a database position and locks, the returned cursor is
uninitialized and will behave like a newly created cursor.SDatabaseException
- if any error occurspublic SCursorConfig getConfig() throws SDatabaseException
This may differ from the configuration used to open this object.
SDatabaseException
- if any error occurspublic SCacheFilePriority getPriority() throws SDatabaseException
SDatabaseException
- if any error occurspublic void setPriority(SCacheFilePriority priority) throws SDatabaseException
The priority of a page biases the replacement algorithm to be more or less likely to discard a page when space is needed in the buffer pool. The bias is temporary, and pages will eventually be discarded if they are not referenced again. The setPriority method is only advisory, and does not guarantee pages will be treated in a specific way.
priority
- the cache prioritySDatabaseException
- if any error occurspublic SDatabase getDatabase()
SDatabase
handle associated with this cursor.SDatabase
handle associated with this cursorpublic java.util.Set<SSecondaryDatabase> getSecondaryDatabases()
PutHelper
getSecondaryDatabases
in interface PutHelper
public SOperationStatus getCurrent(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.KEYEMPTY
if the key/pair at the cursor
position has been deleted; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getFirst(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getLast(SDatabaseEntry key, SDatabaseEntry data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as outputlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getNext(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getNextDup(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getNextNoDup(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getPrev(SDatabaseEntry key, SDatabaseEntry data, SLockMode lockMode) throws SDatabaseException
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as outputlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getPrevDup(SDatabaseEntry key, SDatabaseEntry data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as outputlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getPrevNoDup(SDatabaseEntry key, SDatabaseEntry data, SLockMode lockMode) throws SDatabaseException
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.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as outputlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getRecordNumber(SDatabaseEntry data, SLockMode lockMode) throws SDatabaseException
For this method to be called, the underlying database must be of type Btree, and it must have been configured to support record numbers.
If this method fails for any reason, the position of the cursor will be unchanged.
data
- the data returned as outputlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getSearchBoth(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key used as inputdata
- the data used as input; only SDatabaseEntry
is
supportedlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getSearchBothRange(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
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 inputdata
- the data used as input and returned as output; only SDatabaseEntry
is supportedlockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getSearchKey(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key used as inputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getSearchKeyRange(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
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 outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus getSearchRecordNumber(SDatabaseEntry key, SDatabaseEntryBase data, SLockMode lockMode) throws SDatabaseException
The specified key must be a record number as described in
SDatabaseEntry
. This determines the record to be retrieved.
For this method to be called, the underlying database must be of type Btree, and it must have been configured to support record numbers.
If this method fails for any reason, the position of the cursor will be unchanged.
key
- the key returned as outputdata
- the data returned as output. Use SMultipleDataEntry
to return multiple duplicates of the key. Use SMultiplePairs
to
return multiple key/data pairs.lockMode
- the locking attributes; if null, default attributes are
usedSOperationStatus.NOTFOUND
if no matching key/data pair is
found; SOperationStatus.KEYEMPTY
if 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; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occursprotected TCursorGetConfig createConfig(SDatabaseEntryBase data, SLockMode lockMode)
public SOperationStatus put(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the put method succeeds, the cursor is always positioned to refer to the newly inserted item. If the put method 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 entry operated ondata
- the data entry storedSOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putKeyFirst(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the putKeyFirst method succeeds, the cursor is always positioned to refer to the newly inserted item. If the putKeyFirst method fails for any reason, the state of the cursor will be unchanged.
In the case of the Btree and Hash access methods, insert the specified key/data pair into the database.
If the underlying database supports duplicate data items, and if the key already exists in the database and a duplicate sort function has been specified, the inserted data item is added in its sorted location. If the key already exists in the database and no duplicate sort function has been specified, the inserted data item is added as the first of the data items for that key.
The putKeyFirst method may not be called for the Queue or Recno access methods.
key
- the key entry operated ondata
- the data entry storedSOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putKeyLast(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the putKeyLast method succeeds, the cursor is always positioned to refer to the newly inserted item. If the putKeyLast method fails for any reason, the state of the cursor will be unchanged.
In the case of the Btree and Hash access methods, insert the specified key/data pair into the database.
If the underlying database supports duplicate data items, and if the key already exists in the database and a duplicate sort function has been specified, the inserted data item is added in its sorted location. If the key already exists in the database and no duplicate sort function has been specified, the inserted data item is added as the last of the data items for that key.
The putKeyLast method may not be called for the Queue or Recno access methods.
key
- the key entry operated ondata
- the data entry storedSOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putNoDupData(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the putNoDupData method succeeds, the cursor is always positioned to refer to the newly inserted item. If the putNoDupData method fails for any reason, the state of the cursor will be unchanged.
In the case of the Btree and Hash access methods, insert the specified
key/data pair into the database, unless a key/data pair comparing
equally to it already exists in the database. If a matching key/data
pair already exists in the database, SOperationStatus.KEYEXIST
is returned.
This method may only be called if the underlying database has been configured to support sorted duplicate data items.
This method may not be called for the Queue or Recno access methods.
key
- the key entry operated ondata
- the data entry storedSOperationStatus.KEYEXIST
if a matching key/data pair
already exists in the database; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putNoOverwrite(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the putNoOverwrite method succeeds, the cursor is always positioned to refer to the newly inserted item. If the putNoOverwrite method fails for any reason, the state of the cursor will be unchanged.
If the key already appears in the database, putNoOverwrite will return
SOperationStatus.KEYEXIST
.
key
- the key entry operated ondata
- the data entry storedSOperationStatus.KEYEXIST
if a matching key/data pair
already exists in the database; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putAfter(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the putAfter method succeeds, the cursor is always positioned to refer to the newly inserted item. If the putAfter method fails for any reason, the state of the cursor will be unchanged.
In the case of the Btree and Hash access methods, insert the data element as a duplicate element of the key to which the cursor refers. The new element appears immediately after the current cursor position. It is an error to call this method if the underlying Btree or Hash database does not support duplicate data items. The key parameter is ignored.
In the case of the Hash access method, the putAfter method will fail and throw an exception if the current cursor record has already been deleted.
key
- the key entry operated ondata
- the data entry storedSOperationStatus.NOTFOUND
if the current cursor has
already been deleted and the underlying access method is Hash;
otherwise,
SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putBefore(SDatabaseEntry key, SDatabaseEntry data) throws SDatabaseException
If the putBefore method succeeds, the cursor is always positioned to refer to the newly inserted item. If the putBefore method fails for any reason, the state of the cursor will be unchanged.
In the case of the Btree and Hash access methods, insert the data element as a duplicate element of the key to which the cursor refers. The new element appears immediately before the current cursor position. It is an error to call this method if the underlying Btree or Hash database does not support duplicate data items. The key parameter is ignored.
In the case of the Hash access method, the putBefore method will fail and throw an exception if the current cursor record has already been deleted.
key
- the key entry operated ondata
- the data entry storedSOperationStatus.NOTFOUND
if the current cursor has
already been deleted and the underlying access method is Hash;
otherwise,
SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus putCurrent(SDatabaseEntry data) throws SDatabaseException
Whether the putCurrent method succeeds or 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. This method will return SOperationStatus.NOTFOUND
if the cursor currently refers to an
already-deleted key/data pair.
For a database that does not support duplicates, the data may be changed by this method.
If the old and new data are unequal, a SDatabaseException
is
thrown. Changing the data in this case would change the sort order of
the record, which would change the cursor position, and this is not
allowed. To change the sort order of a record, delete it and then
re-insert it.
data
- the data entry storedSOperationStatus.NOTFOUND
if the current cursor has
already been deleted; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic SOperationStatus delete() throws SDatabaseException
When called on a cursor opened on a database that has been made into a secondary index, this method deletes the key/data pair from the primary database and all secondary indices.
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.
SOperationStatus.KEYEMPTY
if the key/pair at the cursor
position has been deleted; otherwise, SOperationStatus.SUCCESS
SDatabaseException
- if any error occurspublic <V> V remoteCallWithIOException(com.sleepycat.client.RemoteServiceCallable<V> remote) throws java.io.IOException
java.io.IOException
public <V> V remoteCall(com.sleepycat.client.RemoteServiceCallable<V> remote)
public <V> V handleRuntimeExceptions(com.sleepycat.client.RemoteServiceCallable<V> remote) throws org.apache.thrift.TException
org.apache.thrift.TException
Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved.