Searched refs:Database (Results 26 - 50 of 85) sorted by relevance

1234

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr016/src/com/sleepycat/db/test/
H A DCallbackTest.java82 Database db = dbEnv.openDatabase(null, CALLBACKTEST_DBNAME, null, dbConfig);
135 public void upgradeFeedback(Database db, int percent)
139 public void verifyFeedback(Database db, int percent)
H A DEncryptTest.java59 Database db = new Database(TestUtils.getDBFileName(ENCRYPTTEST_DBNAME), null, dbConf);
85 Database db = new Database(TestUtils.getDBFileName(ENCRYPTTEST_DBNAME), null, dbConf);
H A DClosedDbTest.java52 Database db = new Database(TestUtils.getDBFileName(CLOSEDDBTEST_DBNAME), null, dbConf);
73 fail("Database get on a closed Db should not have completed.");
H A DPartialGetTest.java62 Database db = setupDb1(key, data_64chars);
94 Database db = setupDb1(key, data_64chars);
142 Database db = setupDb1(key, sb.toString().getBytes());
204 private Database setupDb1(DatabaseEntry key, byte[] dataData)
213 Database db = new Database(TestUtils.getDBFileName(PARTIALGETTEST_DBNAME), null, dbConfig);
H A DAppendRecnoTest.java73 Database db = new Database(TestUtils.getDBFileName(RECNOTEST_DBNAME), null, dbConfig);
123 public void appendRecordNumber(Database db, DatabaseEntry data, int recno)
H A DDatabaseTest.java26 import com.sleepycat.db.Database;
154 Database db = new Database(TestUtils.getDBFileName(DATABASETEST_DBNAME), null, options.db_config);
178 Database db = new Database(TestUtils.getDBFileName(DATABASETEST_DBNAME), null, options.db_config);
244 Database db;
256 db = new Database(name, null, options.db_config);
359 Database database = null; // db is saved here by rundb if save_db is true.
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/txn/
H A DDBWriter.java10 import com.sleepycat.db.Database;
24 private Database myDb = null;
42 DBWriter(Environment env, Database db, StoredClassCatalog scc,
54 DBWriter(Environment env, Database db, StoredClassCatalog scc)
176 // a database is to use the Database.getStats() method.
H A DTxnGuide.java7 import com.sleepycat.db.Database;
26 private static Database myDb = null;
27 private static Database myClassDb = null;
109 dbName, // Database file name
110 null, // Database name
117 cdbName, // Database file name
118 null, // Database name,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DSecondaryIndex.java19 import com.sleepycat.db.Database;
770 private Database keysDb;
805 Database keysDatabase,
836 public Database getKeysDatabase() {
H A DKeysIndex.java16 import com.sleepycat.db.Database;
35 KeysIndex(Database db,
H A DEntityJoin.java19 import com.sleepycat.db.Database;
98 Database db = index.getKeysDatabase();
189 private Database db;
192 Condition(Database db, DatabaseEntry key) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/
H A DSequenceExample.java76 Database table = new Database(databaseName, null, dbConfig);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/serial/
H A DCatalogCornerCaseTest.java16 import com.sleepycat.db.Database;
83 Database db =
H A DTupleSerialFactoryTest.java22 import com.sleepycat.db.Database;
68 private Database store1;
69 private Database store2;
167 private Database openDb(String file)
180 Database primary,
182 Database foreignStore)
H A DStoredClassCatalogTest.java23 import com.sleepycat.db.Database;
71 private Database store;
104 private Database openDb(String file, boolean create)
H A DStoredClassCatalogTestInit.java22 import com.sleepycat.db.Database;
69 private Database store;
96 private Database openDb(String file)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DTestStore.java20 import com.sleepycat.db.Database;
242 Database open(Environment env, String fileName)
249 Database openIndex(Database primary, String fileName)
259 private Database openDb(Environment env, String fileName, int fixedLen,
260 Database primary)
H A DSecondaryDeadlockTest.java15 import com.sleepycat.db.Database;
62 private Database store;
63 private Database index;
H A DForeignKeyTest.java23 import com.sleepycat.db.Database;
82 private Database store1;
83 private Database store2;
174 private Database openDb(String file)
187 Database primary,
189 Database foreignStore)
H A DIterDeadlockTest.java19 import com.sleepycat.db.Database;
62 private Database store1;
63 private Database store2;
114 private Database openDb(String file)
H A DJoinTest.java26 import com.sleepycat.db.Database;
67 private Database store;
148 private Database openDb(String file)
159 private SecondaryDatabase openSecondaryDb(Database primary,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/hello/
H A DHelloDatabaseWorld.java23 import com.sleepycat.db.Database;
35 "Hello", "Database", "World",
41 private Database db;
100 Database catalogDb = env.openDatabase(null, "catalog", null, dbConfig);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DSequence.java16 Sequence handles are opened using the {@link com.sleepycat.db.Database#openSequence Database.openSequence} method.
84 Return the Database handle associated with this sequence.
87 The Database handle associated with this sequence.
89 public Database getDatabase()
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DCurrentTransaction.java19 import com.sleepycat.db.Database;
314 Cursor openCursor(Database db, CursorConfig cursorConfig,
391 Database db = cursor.getDatabase();
425 Database db = cursor.getDatabase();
443 * Returns true if a CDB cursor is open and therefore a Database write
446 boolean isCDBCursorOpen(Database db)
H A DStoredList.java19 import com.sleepycat.db.Database;
26 * A List view of a {@link Database}.
28 * <p>For all stored lists the keys of the underlying Database
54 * Creates a list view of a {@link Database}.
56 * @param database is the Database underlying the new collection.
70 public StoredList(Database database, EntryBinding valueBinding,
78 * Creates a list entity view of a {@link Database}.
80 * @param database is the Database underlying the new collection.
94 public StoredList(Database database, EntityBinding valueEntityBinding,
102 * Creates a list view of a {@link Database} wit
[all...]

Completed in 124 milliseconds

1234