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/OperationStatus.html | 1612 +++++++++----------- 1 file changed, 738 insertions(+), 874 deletions(-) (limited to 'docs/java/com/sleepycat/db/class-use/OperationStatus.html') diff --git a/docs/java/com/sleepycat/db/class-use/OperationStatus.html b/docs/java/com/sleepycat/db/class-use/OperationStatus.html index 79528b31..160fc882 100644 --- a/docs/java/com/sleepycat/db/class-use/OperationStatus.html +++ b/docs/java/com/sleepycat/db/class-use/OperationStatus.html @@ -1,894 +1,758 @@ - - - - - -Uses of Class com.sleepycat.db.OperationStatus (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + + + + - -
-
-

-Uses of Class
com.sleepycat.db.OperationStatus

-
- - - - - - - - - -
-Packages that use OperationStatus
com.sleepycat.dbBerkeley DB Java API
-[reference guide] [Java programming notes]
-  -

- - - - - -
-Uses of OperationStatus in com.sleepycat.db
-  -

- - - - - - - - - - - - - - - - - - - - - -
Fields in com.sleepycat.db declared as OperationStatus
-static OperationStatusOperationStatus.KEYEMPTY - -
-          The cursor operation was unsuccessful because the current record - was deleted.
-static OperationStatusOperationStatus.KEYEXIST - -
-          The operation to insert data was configured to not allow overwrite - and the key already exists in the database.
-static OperationStatusOperationStatus.NOTFOUND - -
-          The requested key/data pair was not found.
-static OperationStatusOperationStatus.SUCCESS - -
-          The operation was successful.
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
Methods in com.sleepycat.db that return OperationStatus
- OperationStatusDatabase.append(Transaction txn, - DatabaseEntry key, - DatabaseEntry data) - -
-           -Append the key/data pair to the end of the database.
- OperationStatusDatabase.consume(Transaction txn, - DatabaseEntry key, - DatabaseEntry data, - boolean wait) - -
-          Return the record number and data from the available record closest to -the head of the queue, and delete the record.
- OperationStatusCursor.delete() - -
-          Delete the key/data pair to which the cursor refers.
- OperationStatusDatabase.delete(Transaction txn, - DatabaseEntry key) - -
-          Remove key/data pairs from the database.
- OperationStatusDatabase.deleteMultiple(Transaction txn, - MultipleEntry keys) - -
-          Remove key/data pairs from the database.
- OperationStatusDatabase.deleteMultipleKey(Transaction txn, - MultipleEntry keys) - -
-          Remove key/data pairs from the database.
- OperationStatusDatabase.exists(Transaction txn, - DatabaseEntry key) - -
-          Checks if the specified key appears in the database.
- OperationStatusSecondaryDatabase.get(Transaction txn, - DatabaseEntry key, - DatabaseEntry pKey, - DatabaseEntry data, - LockMode lockMode) - -
-          Retrieves the key/data pair with the given key.
- OperationStatusDatabase.get(Transaction txn, - DatabaseEntry key, - DatabaseEntry data, - LockMode lockMode) - -
-          Retrieves the key/data pair with the given key from the database.
- OperationStatusSecondaryCursor.getCurrent(DatabaseEntry key, - DatabaseEntry pKey, - DatabaseEntry data, - LockMode lockMode) - -
-          Returns the key/data pair to which the cursor refers.
- OperationStatusCursor.getCurrent(DatabaseEntry key, - DatabaseEntry data, - LockMode lockMode) - -
-          Returns the key/data pair to which the cursor refers.
- OperationStatusLogCursor.getCurrent(LogSequenceNumber lsn, - DatabaseEntry data) - -
-          Return the LogSequenceNumber and log record to which the log cursor - currently refers.
- OperationStatusSecondaryCursor.getFirst(DatabaseEntry key, - DatabaseEntry pKey, - DatabaseEntry data, - LockMode lockMode) - -
-          Move the cursor to the first key/data pair of the database, and return -that pair.
- OperationStatusCursor.getFirst(DatabaseEntry key, - DatabaseEntry data, - LockMode lockMode) - -
-          Move the cursor to the first key/data pair of the database, and return -that pair.
- OperationStatusLogCursor.getFirst(LogSequenceNumber lsn, - DatabaseEntry data) - -
-          Return the first LogSequenceNumber and log record.
- OperationStatusSecondaryCursor.getLast(DatabaseEntry key, - DatabaseEntry pKey, - DatabaseEntry data, - LockMode lockMode) - -
-          Move the cursor to the last key/data pair of the database, and return -that pair.
- OperationStatusCursor.getLast(DatabaseEntry key, - DatabaseEntry data, - LockMode lockMode) - -
-          Move the cursor to the last key/data pair of the database, and return -that pair.
- OperationStatusLogCursor.getLast(LogSequenceNumber lsn, - DatabaseEntry data) - -
-          Return the last LogSequenceNumber and log record.
- OperationStatusSecondaryCursor.getNext(DatabaseEntry key, - DatabaseEntry pKey, - DatabaseEntry data, - LockMode lockMode) - -
-          Move the cursor to the next key/data pair and return that pair.
- OperationStatusJoinCursor.getNext(DatabaseEntry key, - DatabaseEntry data, - LockMode lockMode) - -
-          Returns the next primary key and data resulting from the join operation.
- OperationStatusCursor.getNext(DatabaseEntry key, - DatabaseEntry data, - LockMode lockMode) - -
-          Move the cursor to the next key/data pair and return that pair.
- OperationStatusJoinCursor.getNext(DatabaseEntry key, - LockMode lockMode) - -
-          Returns the next primary key resulting from the join operation.
- OperationStatusLogCursor.getNext(LogSequenceNumber lsn, - DatabaseEntry data) - -
-          Return the next LogSequenceNumber and log record.
- OperationStatusSecondaryCursor.getNextDup(DatabaseEntry key, - DatabaseEntry pKey, - DatabaseEntry data, - LockMode lockMode) - -
-          If the next key/data pair of the database is a duplicate data record for +
+

Uses of Class
com.sleepycat.db.OperationStatus

+
+
+
+
OperationStatusDatabaseStream.read(DatabaseEntry data, + long offset, + int size) +
Read from the blob accessed by this database stream.
+
OperationStatusLogCursor.set(LogSequenceNumber lsn, + DatabaseEntry data) +
Return a specific log record.
+
OperationStatusDatabaseStream.write(DatabaseEntry data, + long offset) +
Write to the blob accessed by the database stream.
+
+ + + + + - - - - - - - - - - - - -
-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