Searched refs:database (Results 1 - 25 of 56) sorted by relevance

123

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DFeedbackHandler.java15 A function called with progress information when the database environment is being recovered.
20 A reference to the enclosing database environment.
28 A function called with progress information when the database is being upgraded.
32 @param database
33 A reference to the enclosing database.
38 void upgradeFeedback(Database database, int percent); argument
41 A function called with progress information when the database is being verified.
45 @param database
46 A reference to the enclosing database.
51 void verifyFeedback(Database database, in argument
[all...]
H A DJoinCursor.java74 private Database database; field in class:JoinCursor
78 JoinCursor(final Database database, argument
81 this.database = database;
102 Returns the primary database handle associated with this cursor.
104 @return the primary database handle associated with this cursor.
107 return database;
131 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}.
170 found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database i
[all...]
H A DCursor.java15 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; field in class:Cursor
54 protected Cursor(final Database database, final CursorConfig config) { argument
55 this.database = database;
59 Cursor(final Database database, final Dbc dbc, final CursorConfig config) argument
62 this.database = database;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredSortedMap.java38 * @param database is the Database underlying the new collection.
55 public StoredSortedMap(Database database, EntryBinding keyBinding, argument
58 super(new DataView(database, keyBinding, valueBinding, null,
66 * @param database is the Database underlying the new collection.
83 public StoredSortedMap(Database database, EntryBinding keyBinding, argument
87 super(new DataView(database, keyBinding, valueBinding, null,
94 * @param database is the Database underlying the new collection.
111 public StoredSortedMap(Database database, EntryBinding keyBinding, argument
115 super(new DataView(database, keyBinding, null, valueEntityBinding,
123 * @param database i
140 StoredSortedMap(Database database, EntryBinding keyBinding, EntityBinding valueEntityBinding, PrimaryKeyAssigner keyAssigner) argument
[all...]
H A DStoredMap.java45 * @param database is the Database underlying the new collection.
62 public StoredMap(Database database, EntryBinding keyBinding, argument
65 super(new DataView(database, keyBinding, valueBinding, null,
74 * @param database is the Database underlying the new collection.
91 public StoredMap(Database database, EntryBinding keyBinding, argument
95 super(new DataView(database, keyBinding, valueBinding, null,
103 * @param database is the Database underlying the new collection.
120 public StoredMap(Database database, EntryBinding keyBinding, argument
123 super(new DataView(database, keyBinding, null, valueEntityBinding,
132 * @param database i
149 StoredMap(Database database, EntryBinding keyBinding, EntityBinding valueEntityBinding, PrimaryKeyAssigner keyAssigner) argument
[all...]
H A DStoredValueSet.java37 * @param database is the Database underlying the new collection.
51 public StoredValueSet(Database database, argument
55 super(new DataView(database, null, valueBinding, null,
62 * @param database is the Database underlying the new collection.
76 public StoredValueSet(Database database, argument
80 super(new DataView(database, null, null, valueEntityBinding,
H A DStoredKeySet.java34 * @param database is the Database underlying the new collection.
48 public StoredKeySet(Database database, EntryBinding keyBinding, argument
51 super(new DataView(database, keyBinding, null, null,
H A DStoredSortedKeySet.java41 * @param database is the Database underlying the new collection.
55 public StoredSortedKeySet(Database database, EntryBinding keyBinding, argument
58 super(new DataView(database, keyBinding, null, null,
H A DStoredSortedValueSet.java44 * @param database is the Database underlying the new collection.
58 public StoredSortedValueSet(Database database, argument
62 super(new DataView(database, null, null, valueEntityBinding,
H A DStoredList.java30 * RECNO, RECNO-RENUMBER, QUEUE, or BTREE-RECNUM database. Only RECNO-RENUMBER
56 * @param database is the Database underlying the new collection.
70 public StoredList(Database database, EntryBinding valueBinding, argument
73 super(new DataView(database, DEFAULT_KEY_BINDING, valueBinding, null,
80 * @param database is the Database underlying the new collection.
94 public StoredList(Database database, EntityBinding valueEntityBinding, argument
97 super(new DataView(database, DEFAULT_KEY_BINDING, null,
105 * @param database is the Database underlying the new collection.
119 public StoredList(Database database, EntryBinding valueBinding, argument
122 super(new DataView(database, DEFAULT_KEY_BINDIN
144 StoredList(Database database, EntityBinding valueEntityBinding, PrimaryKeyAssigner keyAssigner) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/pdb/mysql/
H A Dsmb.conf11 mysql:mysql database = samba
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am/
H A Dcurget.cs22 display(database)
23 char *database;
32 /* Open the database. */
44 /* Open the database. */
46 dbp-__GT__open(dbp, NULL, database, NULL, DB_UNKNOWN, DB_RDONLY, 0)) != 0) {
47 dbp-__GT__err(dbp, ret, "%s: DB-__GT__open", database);
51 /* Acquire a cursor for the database. */
62 /* Walk through the database and print out the key/data pairs. */
H A Dcurput.cs11 #define database "a.db" macro
21 (void)remove(database);
28 database, NULL, DB_BTREE, DB_CREATE, 0664)) != 0) {
29 dbp->err(dbp, ret, "%s: DB->open", database);
49 * The DB handle for a Btree database supporting duplicate data
50 * items is the argument; acquire a cursor for the database.
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_vrfy_stub.c34 "library build did not include support for database verification");
39 __db_verify_pp(dbp, file, database, outfile, flags)
41 const char *file, *database;
48 COMPQUIET(database, NULL);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/
H A DSequenceExample.cpp48 (void)fprintf(stderr, "usage: SequenceExample [-r] [database]\n");
56 const char *database; local
71 /* Accept optional database name. */
72 database = *argv == NULL ? DATABASE : argv[0];
81 app.run((bool)(rflag == 1 ? true : false), database);
96 // Remove the previous database.
100 // Create the database object.
109 // to ensure that our database is properly closed
H A DAccessExample.cpp49 (void)fprintf(stderr, "usage: AccessExample [-r] [database]\n");
57 const char *database; local
72 /* Accept optional database name. */
73 database = *argv == NULL ? DATABASE : argv[0];
82 app.run((bool)(rflag == 1 ? true : false), database);
97 // Remove the previous database.
101 // Create the database object.
112 // Insert records into the database, where the key is the user
145 // to ensure that our database is properly closed
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_c/
H A Dex_sequence.c40 const char *database, *progname = "ex_sequence"; local
58 /* Accept optional database name. */
59 database = *argv == NULL ? DATABASE : argv[0];
61 /* Optionally discard the database. */
63 (void)remove(database);
65 /* Create and initialize database object, open the database. */
74 NULL, database, NULL, DB_BTREE, DB_CREATE, 0664)) != 0) {
75 dbp->err(dbp, ret, "%s: open", database);
131 (void)fprintf(stderr, "usage: ex_sequence [-r] [database]\
[all...]
H A Dex_access.c38 char *database, *p, *t, buf[1024], rbuf[1024]; local
54 /* Accept optional database name. */
55 database = *argv == NULL ? DATABASE : argv[0];
57 /* Optionally discard the database. */
59 (void)remove(database);
61 /* Create and initialize database object, open the database. */
78 NULL, database, NULL, DB_BTREE, DB_CREATE, 0664)) != 0) {
79 dbp->err(dbp, ret, "%s: open", database);
84 * Insert records into the database, wher
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/dbdemo/
H A Ddbdemo.c53 char *database, *p, *t, buf[1024], rbuf[1024]; local
70 /* Accept optional database name. */
71 database = *argv == NULL ? DATABASE : argv[0];
73 /* Optionally discard the database. */
75 (void)remove(database);
77 /* Create and initialize database object, open the database. */
94 NULL, database, NULL, DB_BTREE, DB_CREATE, 0664)) != 0) {
95 dbp->err(dbp, ret, "%s: open", database);
100 * Insert records into the database, wher
[all...]
/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 DDatabaseTest.java45 private static int itemcount; // count the number of items in the database
68 * Test creating a new database.
80 * Test opening and adding to an existing database.
107 * Test opening a database with an env.
191 * Test creating a new database.
207 // stop rundb from closing the database, and pass in one created.
215 options.database.close();
216 options.database = null;
218 // reopen the same database.
226 options.database
359 Database database = null; // db is saved here by rundb if save_db is true. field in class:TestOptions
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/perl/DB_File/
H A DDB_File.pm401 # $num_elems holds the current number of elements in the database.
552 # iterate through the database until either EOF ($status == 0)
630 number of database formats. B<DB_File> provides an interface to all
631 three of the database types currently supported by Berkeley DB.
639 This database type allows arbitrary key/value pairs to be stored in data
680 B<Note:> The database file format has changed multiple times in Berkeley
705 Berkeley DB uses the function dbopen() to open or create a database.
861 This example shows how to create a database, add key/value pairs to the
862 database, delete keys/value pairs and finally how to enumerate the
863 contents of the database
[all...]
/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.java786 * @param database the secondary database used for all access other than
789 * @param keysDatabase another handle on the secondary database, opened
792 * method is called, then the keys database will be opened automatically;
793 * however, the user is then responsible for closing the keys database. To
794 * get the keys database in order to close it, call {@link
804 public SecondaryIndex(SecondaryDatabase database, argument
811 super(database, secondaryKeyClass, secondaryKeyBinding,
815 secDb = database;
822 * Returns the underlying secondary database fo
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Dstrict.t17 # closing a database & an environment in the correct order.
41 # closing an environment with an open database
55 ok 10, $@ =~ /BerkeleyDB Aborting: attempted to close an environment with 1 open database/ ;
64 # closing a transaction & a database
92 # closing a database with an open transaction
108 ok 24, $@ =~ /BerkeleyDB Aborting: attempted to close a database while a transaction was still open at/ ;
115 # closing a cursor & a database
130 # closing a database with an open cursor
137 ok 32, $@ =~ /\QBerkeleyDB Aborting: attempted to close a database with 1 open cursor(s) at/;
H A Dcds.t47 ok 6, $@ =~ /CDS not enabled for this database/;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDb.java125 /* No other database feedback types known. */
210 public synchronized void remove(String file, String database, int flags) argument
213 remove0(file, database, flags);
219 public synchronized void rename(String file, String database, argument
223 rename0(file, database, newname, flags);
229 public synchronized boolean verify(String file, String database, argument
233 return verify0(file, database, outfile, flags);
404 public void open(DbTxn txnid, String file, String database, int type, int flags, int mode) throws com.sleepycat.db.DatabaseException, java.io.FileNotFoundException { db_javaJNI.Db_open(swigCPtr, this, DbTxn.getCPtr(txnid), txnid, file, database, type, flags, mode); } argument
414 /* package */ void remove0(String file, String database, in argument
416 rename0(String file, String database, String newname, int flags) argument
470 verify0(String file, String database, java.io.OutputStream outfile, int flags) argument
[all...]

Completed in 218 milliseconds

123