• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/

Lines Matching refs:database

15 A database cursor. Cursors are used for operating on collections of
16 records, for iterating over a database, and for saving handles to
41 Modifications to the database during a sequential scan will be reflected
50 /* package */ Database database;
54 protected Cursor(final Database database, final CursorConfig config) {
55 this.database = database;
59 Cursor(final Database database, final Dbc dbc, final CursorConfig config)
62 this.database = database;
88 same position in the database as the original cursor (if any) and
90 not hold a database position and locks, the returned cursor is
103 return new Cursor(database,
131 return database;
157 When called on a cursor opened on a database that has been made into a
158 secondary index, this method the key/data pair from the primary database
215 Move the cursor to the first key/data pair of the database, and return
240 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
254 Move the cursor to the last key/data pair of the database, and return
278 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
297 key/data pair of the database, and return that pair. Otherwise, the
298 cursor is moved to the next key/data pair of the database, and that pair
323 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
337 If the next key/data pair of the database is a duplicate data record for
339 of the database and return that pair.
362 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
381 key/data pair of the database, and return that pair. Otherwise, the
382 cursor is moved to the next non-duplicate key of the database, and that
406 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
425 key/data pair of the database, and return that pair. Otherwise, the
426 cursor is moved to the previous key/data pair of the database, and that
450 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
464 If the previous key/data pair of the database is a duplicate data record
466 pair of the database and return that pair.
488 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
507 key/data pair of the database, and return that pair. Otherwise, the
508 cursor is moved to the previous non-duplicate key of the database, and
531 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
548 For this method to be called, the underlying database must be of type
568 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
582 Move the cursor to the given key of the database, and return the datum
607 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
621 Move the cursor to the closest matching key of the database, and return
650 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
687 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
702 database.
704 In the case of any database supporting sorted duplicate sets, the returned
729 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
744 Move the cursor to the specific numbered record of the database, and
751 For this method to be called, the underlying database must be of type
775 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
789 Store a key/data pair into the database.
795 If the key already appears in the database and duplicates are supported,
797 key already appears in the database and duplicates are not supported,
821 Store a key/data pair into the database.
832 underlying Btree or Hash database does not support duplicate data items.
839 method if the underlying Recno database was not configured to have
868 Store a key/data pair into the database.
879 underlying Btree or Hash database does not support duplicate data items.
886 method if the underlying Recno database was not configured to have
915 Store a key/data pair into the database.
921 If the key already appears in the database, putNoOverwrite will return
948 DbConstants.DB_SET | database.rmwFlag);
968 Store a key/data pair into the database.
975 key/data pair into the database.
977 If the underlying database supports duplicate data items, and if the
978 key already exists in the database and a duplicate sort function has
980 If the key already exists in the database and no duplicate sort function
1008 Store a key/data pair into the database.
1015 key/data pair into the database.
1017 If the underlying database supports duplicate data items, and if the
1018 key already exists in the database and a duplicate sort function has
1020 If the key already exists in the database and no duplicate sort function
1048 Store a key/data pair into the database.
1055 the specified key/data pair into the database, unless a key/data pair
1056 comparing equally to it already exists in the database. If a matching
1057 key/data pair already exists in the database, {@link com.sleepycat.db.OperationStatus#KEYEXIST OperationStatus.KEYEXIST} is returned.
1059 This method may only be called if the underlying database has been
1094 For a database that does not support duplicates, the data may be changed by