| Package | Description |
|---|---|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| com.sleepycat.je.util |
Supporting utilities.
|
| Modifier and Type | Method | Description |
|---|---|---|
Database |
Environment.openDatabase(Transaction txn,
java.lang.String databaseName,
DatabaseConfig dbConfig) |
Opens, and optionally creates, a
Database. |
SecondaryDatabase |
Environment.openSecondaryDatabase(Transaction txn,
java.lang.String databaseName,
Database primaryDatabase,
SecondaryConfig dbConfig) |
Opens and optionally creates a
SecondaryDatabase. |
void |
Environment.removeDatabase(Transaction txn,
java.lang.String databaseName) |
Removes a database from the environment, discarding all records in the
database and removing the database name itself.
|
void |
Environment.renameDatabase(Transaction txn,
java.lang.String databaseName,
java.lang.String newName) |
Renames a database, without removing the records it contains.
|
long |
Environment.truncateDatabase(Transaction txn,
java.lang.String databaseName,
boolean returnCount) |
Empties the database, discarding all the records it contains, without
removing the database name.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
DbDump.dump() |
Perform the dump.
|
boolean |
DbStat.stats(java.io.PrintStream out) |
Copyright (c) 2002, 2018 Oracle and/or its affiliates. All rights reserved.