| Package | Description |
|---|---|
| com.sleepycat.collections |
Data access based on the standard Java collections API.
|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| com.sleepycat.je.jca.ra |
Support for the Java Connector Architecture, which provides a standard
for connecting the J2EE platform to legacy enterprise information
systems (EIS), such as ERP systems, database systems, and legacy
applications not written in Java.
|
| com.sleepycat.je.jmx |
Implementations of JMX MBeans for JE.
|
| com.sleepycat.je.rep |
Berkeley DB Java Edition High Availability (JE HA) enables replication of JE
environments.
|
| com.sleepycat.je.util |
Supporting utilities.
|
| com.sleepycat.persist |
The Direct Persistence Layer (DPL) adds a persistent object model to the
Berkeley DB transactional engine.
|
| com.sleepycat.persist.raw |
Raw data access for general purpose tools and manual conversions.
|
| Modifier and Type | Method | Description |
|---|---|---|
Environment |
CurrentTransaction.getEnvironment() |
Returns the underlying Berkeley DB environment.
|
| Modifier and Type | Method | Description |
|---|---|---|
static CurrentTransaction |
CurrentTransaction.getInstance(Environment env) |
Gets the CurrentTransaction accessor for a specified Berkeley DB
environment.
|
| Constructor | Description |
|---|---|
TransactionRunner(Environment env) |
Creates a transaction runner for a given Berkeley DB environment.
|
TransactionRunner(Environment env,
int maxRetries,
TransactionConfig config) |
Creates a transaction runner for a given Berkeley DB environment and
with a given number of maximum retries.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
XAEnvironment |
An Environment that implements XAResource.
|
| Modifier and Type | Method | Description |
|---|---|---|
Environment |
Database.getEnvironment() |
Returns the
Environment handle for
the database environment underlying the Database. |
| Modifier and Type | Method | Description |
|---|---|---|
Environment |
JEConnection.getEnvironment() |
| Modifier and Type | Field | Description |
|---|---|---|
protected Environment |
JEMBean.env |
| Modifier and Type | Method | Description |
|---|---|---|
void |
JEMBean.doRegister(Environment env) |
For EnvironmentImpl.MBeanRegistrar interface.
|
protected void |
JEDiagnostics.doRegisterMBean(Environment env) |
|
protected abstract void |
JEMBean.doRegisterMBean(Environment env) |
|
protected void |
JEMonitor.doRegisterMBean(Environment env) |
|
java.lang.Object |
JEMBeanHelper.getAttribute(Environment targetEnv,
java.lang.String attributeName) |
Deprecated.
Get an attribute value for the given environment.
|
java.util.List<javax.management.MBeanAttributeInfo> |
JEMBeanHelper.getAttributeList(Environment targetEnv) |
Deprecated.
Get MBean attribute metadata for this environment.
|
javax.management.MBeanNotificationInfo[] |
JEMBeanHelper.getNotificationInfo(Environment targetEnv) |
Deprecated.
No notifications are supported.
|
java.util.List<javax.management.MBeanOperationInfo> |
JEMBeanHelper.getOperationList(Environment targetEnv) |
Deprecated.
Get mbean operation metadata for this environment.
|
java.lang.Object |
JEMBeanHelper.invoke(Environment targetEnv,
java.lang.String actionName,
java.lang.Object[] params,
java.lang.String[] signature) |
Deprecated.
Invoke an operation for the given environment.
|
void |
JEMBeanHelper.setAttribute(Environment targetEnv,
javax.management.Attribute attribute) |
Deprecated.
Set an attribute value for the given environment.
|
| Constructor | Description |
|---|---|
JEDiagnostics(Environment env) |
|
JEMBean(Environment env) |
|
JEMonitor(Environment env) |
| Modifier and Type | Class | Description |
|---|---|---|
class |
ReplicatedEnvironment |
A replicated database environment that is a node in a replication
group.
|
| Modifier and Type | Field | Description |
|---|---|---|
protected Environment |
DbDump.env |
|
protected Environment |
DbLoad.env |
| Modifier and Type | Method | Description |
|---|---|---|
void |
DbLoad.setEnv(Environment env) |
Sets the Environment to load from.
|
| Constructor | Description |
|---|---|
DbBackup(Environment env) |
Creates a DbBackup helper for a full backup.
|
DbBackup(Environment env,
long lastFileInPrevBackup) |
Creates a DbBackup helper for an incremental backup.
|
DbDump(Environment env,
java.lang.String dbName,
java.io.PrintStream outputFile,
boolean formatUsingPrintable) |
Create a DbDump object for a specific environment and database.
|
DbDump(Environment env,
java.lang.String dbName,
java.io.PrintStream outputFile,
java.lang.String outputDirectory,
boolean formatUsingPrintable) |
Deprecated.
Please use the 4-arg ctor without outputDirectory instead.
|
DbScavenger(Environment env,
java.lang.String outputDirectory,
boolean formatUsingPrintable,
boolean doAggressiveScavengerRun,
boolean verbose) |
Create a DbScavenger object for a specific environment.
|
DbSpace(Environment env,
boolean quiet,
boolean details,
boolean sorted) |
Creates a DbSpace object for calculating utilization using an open
Environment.
|
DbStat(Environment env,
java.lang.String dbName) |
|
DbVerify(Environment env,
java.lang.String dbName,
boolean quiet) |
Deprecated.
as of 7.5, use
verify(com.sleepycat.je.VerifyConfig, java.io.PrintStream) or
Database.verify(com.sleepycat.je.VerifyConfig) instead. |
DbVerifyLog(Environment env) |
Creates a utility object for verifying the checksums in log files.
|
DbVerifyLog(Environment env,
int readBufferSize) |
Creates a utility object for verifying log files.
|
LogVerificationInputStream(Environment env,
java.io.InputStream in,
java.lang.String fileName) |
Creates a verification input stream.
|
LogVerificationReadableByteChannel(Environment env,
java.nio.channels.ReadableByteChannel channel,
java.lang.String fileName) |
Creates a verification input stream.
|
| Modifier and Type | Method | Description |
|---|---|---|
Environment |
EntityStore.getEnvironment() |
Returns the environment associated with this store.
|
| Modifier and Type | Method | Description |
|---|---|---|
static java.util.Set<java.lang.String> |
EntityStore.getStoreNames(Environment env) |
Returns the names of all entity stores in the given environment.
|
| Constructor | Description |
|---|---|
EntityStore(Environment env,
java.lang.String storeName,
StoreConfig config) |
Opens an entity store in a given environment.
|
| Modifier and Type | Method | Description |
|---|---|---|
Environment |
RawStore.getEnvironment() |
Returns the environment associated with this store.
|
| Constructor | Description |
|---|---|
RawStore(Environment env,
java.lang.String storeName,
StoreConfig config) |
Opens an entity store for raw data access.
|
Copyright (c) 2002, 2018 Oracle and/or its affiliates. All rights reserved.