| Package | Description |
|---|---|
| com.sleepycat.compat |
INTERNAL: BDB/JE compatibility layer for bind, collections, DPL packages.
|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| com.sleepycat.persist |
The Direct Persistence Layer (DPL) adds a persistent object model to the
Berkeley DB transactional engine.
|
| Modifier and Type | Field and Description |
|---|---|
ReadOptions |
DbCompat.OpReadOptions.jeOptions |
| Modifier and Type | Method and Description |
|---|---|
static DbCompat.OpReadOptions |
DbCompat.OpReadOptions.make(ReadOptions options) |
| Modifier and Type | Method and Description |
|---|---|
ReadOptions |
ReadOptions.clone() |
static ReadOptions |
DbInternal.getReadOptions(LockMode lockMode) |
ReadOptions |
ReadOptions.setCacheMode(CacheMode cacheMode)
Sets the
CacheMode to be used for the operation. |
ReadOptions |
ReadOptions.setLockMode(LockMode lockMode)
Sets the
LockMode to be used for the operation. |
ReadOptions |
LockMode.toReadOptions()
Returns a ReadOptions with this LockMode property, and default values
for all other properties.
|
| Modifier and Type | Method and Description |
|---|---|
OperationResult |
SecondaryCursor.get(DatabaseEntry key,
DatabaseEntry pKey,
DatabaseEntry data,
Get getType,
ReadOptions options)
Moves the cursor to a record according to the specified
Get
type. |
OperationResult |
JoinCursor.get(DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options)
Returns the next primary key and data resulting from the join operation.
|
OperationResult |
DiskOrderedCursor.get(DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options) |
OperationResult |
SecondaryCursor.get(DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options)
Moves the cursor to a record according to the specified
Get
type. |
OperationResult |
ForwardCursor.get(DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options)
Moves the cursor to a record according to the specified
Get
type. |
OperationResult |
Cursor.get(DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options)
Moves the cursor to a record according to the specified
Get
type. |
OperationResult |
SecondaryDatabase.get(Transaction txn,
DatabaseEntry key,
DatabaseEntry pKey,
DatabaseEntry data,
Get getType,
ReadOptions options)
Retrieves a record according to the specified
Get type. |
OperationResult |
SecondaryDatabase.get(Transaction txn,
DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options)
Moves the cursor to a record according to the specified
Get
type. |
OperationResult |
Database.get(Transaction txn,
DatabaseEntry key,
DatabaseEntry data,
Get getType,
ReadOptions options)
Retrieves a record according to the specified
Get type. |
static OperationResult |
DbInternal.search(Cursor cursor,
DatabaseEntry key,
DatabaseEntry pKey,
DatabaseEntry data,
DbInternal.Search searchMode,
ReadOptions options)
Finds the key according to the Search param.
|
static OperationResult |
DbInternal.searchBoth(Cursor cursor,
DatabaseEntry key,
DatabaseEntry pKey,
DatabaseEntry data,
DbInternal.Search searchMode,
ReadOptions options)
Searches with the dups for the given key and finds the dup matching the
pKey value, according to the Search param.
|
| Modifier and Type | Method and Description |
|---|---|
EntityResult<V> |
EntityCursor.get(Get getType,
ReadOptions options)
Moves the cursor according to the specified
Get type and returns
the value at the updated position. |
EntityResult<V> |
EntityIndex.get(Transaction txn,
K key,
Get getType,
ReadOptions options)
Gets an entity via a key of this index, using Get type and ReadOptions
parameters, and returning an EntityResult.
|
EntityResult<E> |
PrimaryIndex.get(Transaction txn,
PK key,
Get getType,
ReadOptions options) |
EntityResult<E> |
SecondaryIndex.get(Transaction txn,
SK key,
Get getType,
ReadOptions options) |
Copyright © 2024. All rights reserved.