From 780b92ada9afcf1d58085a83a0b9e6bc982203d1 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 17 Feb 2015 17:25:57 +0000 Subject: Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz. --- .../sleepycat/db/class-use/DatabaseException.html | 6255 +++++++++----------- 1 file changed, 2854 insertions(+), 3401 deletions(-) (limited to 'docs/java/com/sleepycat/db/class-use/DatabaseException.html') diff --git a/docs/java/com/sleepycat/db/class-use/DatabaseException.html b/docs/java/com/sleepycat/db/class-use/DatabaseException.html index e6909b14..9f129451 100644 --- a/docs/java/com/sleepycat/db/class-use/DatabaseException.html +++ b/docs/java/com/sleepycat/db/class-use/DatabaseException.html @@ -1,3435 +1,2888 @@ - - - - - -Uses of Class com.sleepycat.db.DatabaseException (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + + + + - -
-
-

-Uses of Class
com.sleepycat.db.DatabaseException

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use DatabaseException
com.sleepycat.bind.serialBindings that use Java serialization. 
com.sleepycat.collectionsData access based on the standard Java collections API. 
com.sleepycat.dbBerkeley DB Java API
-[reference guide] [Java programming notes]
com.sleepycat.persistThe Direct Persistence Layer (DPL) adds a persistent object model to the -Berkeley DB transactional engine. 
com.sleepycat.persist.rawRaw data access for general purpose tools and manual conversions. 
-  -

- - - - - -
-Uses of DatabaseException in com.sleepycat.bind.serial
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.sleepycat.bind.serial that throw DatabaseException
- voidClassCatalog.close() - -
-          Close a catalog database and release any cached resources.
- voidStoredClassCatalog.close() - -
-           
- ObjectStreamClassClassCatalog.getClassFormat(byte[] classID) - -
-          Return the ObjectStreamClass for the given class ID.
- ObjectStreamClassStoredClassCatalog.getClassFormat(byte[] classID) - -
-           
- byte[]ClassCatalog.getClassID(ObjectStreamClass classDesc) - -
-          Return the class ID for the current version of the given class - description.
- byte[]StoredClassCatalog.getClassID(ObjectStreamClass classFormat) - -
-           
-  -

- - - - - - - - -
Constructors in com.sleepycat.bind.serial that throw DatabaseException
StoredClassCatalog(Database database) - -
-          Creates a catalog based on a given database.
-  -

- - - - - -
-Uses of DatabaseException in com.sleepycat.collections
-  -

- - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.sleepycat.collections that throw DatabaseException
- TransactionCurrentTransaction.abortTransaction() - -
-          Aborts the transaction that is active for the current thread for this +
+

Uses of Class
com.sleepycat.db.DatabaseException

+
+
+
+
EPrimaryIndex.put(E entity) +
Inserts an entity and returns null, or updates it if the primary key + already exists and returns the existing entity.
+
EPrimaryIndex.put(Transaction txn, + E entity) +
Inserts an entity and returns null, or updates it if the primary key + already exists and returns the existing entity.
+
booleanPrimaryIndex.putNoOverwrite(E entity) +
Inserts an entity and returns true, or returns false if the primary key + already exists.
+
booleanPrimaryIndex.putNoOverwrite(Transaction txn, + E entity) +
Inserts an entity and returns true, or returns false if the primary key + already exists.
+
voidPrimaryIndex.putNoReturn(E entity) +
Inserts an entity, or updates it if the primary key already exists (does + not return the existing entity).
+
voidPrimaryIndex.putNoReturn(Transaction txn, + E entity) +
Inserts an entity, or updates it if the primary key already exists (does + not return the existing entity).
+
EntityIndex<PK,E>SecondaryIndex.subIndex(SK key) +
Returns an index that maps primary key to entity for the subset of + entities having a given secondary key (duplicates).
+
voidEntityStore.truncateClass(java.lang.Class entityClass) +
Deletes all instances of this entity class and its (non-entity) + subclasses.
+
voidEntityStore.truncateClass(Transaction txn, + java.lang.Class entityClass) +
Deletes all instances of this entity class and its (non-entity) + subclasses.
+
booleanEntityCursor.update(V entity) +
Replaces the entity at the cursor position with the given entity.
+
+ + + + + + + + + + + + + + + + +
Constructors in com.sleepycat.persist that throw DatabaseException 
Constructor and Description
EntityStore(Environment env, + java.lang.String storeName, + StoreConfig config) +
Opens an entity store in a given environment.
+
PrimaryIndex(Database database, + java.lang.Class<PK> keyClass, + EntryBinding<PK> keyBinding, + java.lang.Class<E> entityClass, + EntityBinding<E> entityBinding) +
Creates a primary index without using an EntityStore.
+
SecondaryIndex(SecondaryDatabase database, + Database keysDatabase, + PrimaryIndex<PK,E> primaryIndex, + java.lang.Class<SK> secondaryKeyClass, + EntryBinding<SK> secondaryKeyBinding) +
Creates a secondary index without using an EntityStore.
+
+ +

  • + + +

    Uses of DatabaseException in com.sleepycat.persist.raw

    + + + + + + + + + + + + + + + + + + + + +
    Methods in com.sleepycat.persist.raw that throw DatabaseException 
    Modifier and TypeMethod and Description
    voidRawStore.close() +
    Closes all databases and sequences that were opened by this model.
    +
    PrimaryIndex<java.lang.Object,RawObject>RawStore.getPrimaryIndex(java.lang.String entityClass) +
    Opens the primary index for a given entity class.
    +
    SecondaryIndex<java.lang.Object,java.lang.Object,RawObject>RawStore.getSecondaryIndex(java.lang.String entityClass, + java.lang.String keyName) +
    Opens the secondary index for a given entity class and secondary key + name.
    +
    + + + + + + + + + + +
    Constructors in com.sleepycat.persist.raw that throw DatabaseException 
    Constructor and Description
    RawStore(Environment env, + java.lang.String storeName, + StoreConfig config) +
    Opens an entity store for raw data access.
    +
    +
  • + + + + - - - - - - - - - - - - -
    -Berkeley DB
    version 5.3.21
    -
    - + + + + + - -
    -Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved. - - +

    Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved.

    + + -- cgit v1.2.1