DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Berkeley DB
version 4.4.20

com.sleepycat.db
Class OperationStatus

java.lang.Object
  extended bycom.sleepycat.db.OperationStatus

public final class OperationStatus
extends Object

Status values from database operations.


Field Summary
static OperationStatus KEYEMPTY
          The cursor operation was unsuccessful because the current record was deleted.
static OperationStatus KEYEXIST
          The operation to insert data was configured to not allow overwrite and the key already exists in the database.
static OperationStatus NOTFOUND
          The requested key/data pair was not found.
static OperationStatus SUCCESS
          The operation was successful.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SUCCESS

public static final OperationStatus SUCCESS
The operation was successful.


KEYEXIST

public static final OperationStatus KEYEXIST
The operation to insert data was configured to not allow overwrite and the key already exists in the database.


KEYEMPTY

public static final OperationStatus KEYEMPTY
The cursor operation was unsuccessful because the current record was deleted.


NOTFOUND

public static final OperationStatus NOTFOUND
The requested key/data pair was not found.


Berkeley DB
version 4.4.20

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.