Package com.sleepycat.db
Class DatabaseType
java.lang.Object
com.sleepycat.db.DatabaseType
Database types.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DatabaseTypeThe database is a Btree.static final DatabaseTypeThe database is a Hash.static final DatabaseTypeThe database is a Heap.static final DatabaseTypeThe database is a Queue.static final DatabaseTypeThe database is a Recno.static final DatabaseTypeThe database type is unknown. -
Method Summary
-
Field Details
-
BTREE
The database is a Btree. The Btree format is a representation of a sorted, balanced tree structure. -
HASH
The database is a Hash. The Hash format is an extensible, dynamic hashing scheme. -
HEAP
The database is a Heap. The Heap format is designed for efficient use of disk space. -
QUEUE
The database is a Queue. The Queue format supports fast access to fixed-length records accessed sequentially or by logical record number. -
RECNO
The database is a Recno. The Recno format supports fixed- or variable-length records, accessed sequentially or by logical record number, and optionally backed by a flat text file. -
UNKNOWN
The database type is unknown.
-
-
Method Details