| Package | Description |
|---|---|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| Modifier and Type | Method and Description |
|---|---|
static DbInternal.Search |
DbInternal.Search.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbInternal.Search[] |
DbInternal.Search.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static OperationStatus |
DbInternal.search(Cursor cursor,
DatabaseEntry key,
DatabaseEntry pKey,
DatabaseEntry data,
DbInternal.Search searchMode,
LockMode lockMode)
Deprecated.
use new-style API below instead.
|
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 OperationStatus |
DbInternal.searchBoth(Cursor cursor,
DatabaseEntry key,
DatabaseEntry pKey,
DatabaseEntry data,
DbInternal.Search searchMode,
LockMode lockMode)
Deprecated.
use new-style API below instead.
|
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.
|
Copyright © 2024. All rights reserved.