Package | Description |
---|---|
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 | Field | Description |
---|---|---|
static StoreConfig |
StoreConfig.DEFAULT |
The default store configuration containing properties as if the
configuration were constructed and not modified.
|
Modifier and Type | Method | Description |
---|---|---|
StoreConfig |
StoreConfig.clone() |
Returns a shallow copy of the configuration.
|
StoreConfig |
StoreConfig.cloneConfig() |
Deprecated.
As of JE 4.0.13, replaced by
clone() . |
StoreConfig |
EntityStore.getConfig() |
Returns a copy of the entity store configuration.
|
StoreConfig |
StoreConfig.setAllowCreate(boolean allowCreate) |
Specifies whether creation of a new store is allowed.
|
StoreConfig |
StoreConfig.setDatabaseNamer(DatabaseNamer databaseNamer) |
Specifies the object reponsible for naming of files and databases.
|
StoreConfig |
StoreConfig.setExclusiveCreate(boolean exclusiveCreate) |
Specifies whether opening an existing store is prohibited.
|
StoreConfig |
StoreConfig.setModel(EntityModel model) |
Sets the entity model that defines entity classes and index keys.
|
StoreConfig |
StoreConfig.setMutations(Mutations mutations) |
Configures mutations for performing lazy evolution of stored instances.
|
StoreConfig |
StoreConfig.setReadOnly(boolean readOnly) |
Sets the read-only configuration property.
|
StoreConfig |
StoreConfig.setSecondaryBulkLoad(boolean secondaryBulkLoad) |
Sets the bulk-load-secondaries configuration property.
|
StoreConfig |
StoreConfig.setTransactional(boolean transactional) |
Sets the transactional configuration property.
|
Constructor | Description |
---|---|
EntityStore(Environment env,
java.lang.String storeName,
StoreConfig config) |
Opens an entity store in a given environment.
|
Modifier and Type | Method | Description |
---|---|---|
StoreConfig |
RawStore.getConfig() |
Returns a copy of the entity store configuration.
|
Constructor | Description |
---|---|
RawStore(Environment env,
java.lang.String storeName,
StoreConfig config) |
Opens an entity store for raw data access.
|
Copyright (c) 1996, 2020 Oracle and/or its affiliates. All rights reserved.