| Package | Description |
|---|---|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| com.sleepycat.je.dbi |
INTERNAL: Underlying XxxImpl classes for Environment, Database and Cursor,
plus other misc classes (originally, dbi meant "db internal interface").
|
| Modifier and Type | Method and Description |
|---|---|
void |
Cursor.setRangeConstraint(RangeConstraint rangeConstraint) |
| Modifier and Type | Method and Description |
|---|---|
OperationResult |
CursorImpl.getNext(DatabaseEntry foundKey,
DatabaseEntry foundData,
LockType lockType,
boolean dirtyReadAll,
boolean forward,
boolean isLatched,
RangeConstraint rangeConstraint)
Move the cursor forward and return the next "valid" record.
|
long |
CursorImpl.skip(boolean forward,
long maxCount,
RangeConstraint rangeConstraint)
Skips over entries until a boundary condition is satisfied, either
because maxCount is reached or RangeConstraint.inBounds returns false.
|
Copyright © 2024. All rights reserved.