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 and Description |
---|---|
static StoreConfig |
StoreConfig.DEFAULT
The default store configuration containing properties as if the
configuration were constructed and not modified.
|
Modifier and Type | Method and 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.setDeferredWrite(boolean deferredWrite)
Sets the deferred-write configuration property.
|
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.setReplicated(boolean replicated)
Configures a store to be replicated or non-replicated, in a replicated
Environment.
|
StoreConfig |
StoreConfig.setSecondaryBulkLoad(boolean secondaryBulkLoad)
Sets the bulk-load-secondaries configuration property.
|
StoreConfig |
StoreConfig.setTemporary(boolean temporary)
Sets the temporary configuration property.
|
StoreConfig |
StoreConfig.setTransactional(boolean transactional)
Sets the transactional configuration property.
|
Constructor and Description |
---|
EntityStore(Environment env,
java.lang.String storeName,
StoreConfig config)
Opens an entity store in a given environment.
|
Modifier and Type | Method and Description |
---|---|
StoreConfig |
RawStore.getConfig()
Returns a copy of the entity store configuration.
|
Constructor and Description |
---|
RawStore(Environment env,
java.lang.String storeName,
StoreConfig config)
Opens an entity store for raw data access.
|
Copyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.