static DatabaseBuilder |
DatabaseBuilder.newDatabase() |
Convenience method for constructing a DatabaseBuilder.
|
static DatabaseBuilder |
DatabaseBuilder.newDatabase(File file) |
Convenience method for constructing a DatabaseBuilder.
|
static DatabaseBuilder |
DatabaseBuilder.newDatabase(Path path) |
Convenience method for constructing a DatabaseBuilder.
|
DatabaseBuilder |
DatabaseBuilder.putDatabaseProperty(String name,
DataType type,
Object value) |
Sets the database property with the given name and type to the given
value.
|
DatabaseBuilder |
DatabaseBuilder.putDatabaseProperty(String name,
Object value) |
Sets the database property with the given name to the given value.
|
DatabaseBuilder |
DatabaseBuilder.putSummaryProperty(String name,
DataType type,
Object value) |
Sets the summary database property with the given name and type to
the given value.
|
DatabaseBuilder |
DatabaseBuilder.putSummaryProperty(String name,
Object value) |
Sets the summary database property with the given name to the given
value.
|
DatabaseBuilder |
DatabaseBuilder.putUserDefinedProperty(String name,
DataType type,
Object value) |
Sets the user-defined database property with the given name and type to
the given value.
|
DatabaseBuilder |
DatabaseBuilder.putUserDefinedProperty(String name,
Object value) |
Sets the user-defined database property with the given name to the given
value.
|
DatabaseBuilder |
DatabaseBuilder.setAutoSync(boolean autoSync) |
Sets whether or not to enable auto-syncing on write.
|
DatabaseBuilder |
DatabaseBuilder.setChannel(FileChannel channel) |
Sets a pre-opened FileChannel.
|
DatabaseBuilder |
DatabaseBuilder.setCharset(Charset charset) |
Sets the Charset to use, if null, uses default.
|
DatabaseBuilder |
DatabaseBuilder.setCodecProvider(CodecProvider codecProvider) |
Sets the CodecProvider for handling page encoding/decoding, may be
null if no special encoding is necessary
|
DatabaseBuilder |
DatabaseBuilder.setFile(File mdbFile) |
File containing an existing database for open() or target file for
new database for create() (in which case, tf this file already
exists, it will be overwritten.)
|
DatabaseBuilder |
DatabaseBuilder.setFileFormat(Database.FileFormat fileFormat) |
Sets the version of new database ( create() only).
|
DatabaseBuilder |
DatabaseBuilder.setIgnoreBrokenSystemCatalogIndex(boolean ignore) |
Sets flag which, if true, will make the database ignore the index
on the system catalog when looking up tables.
|
DatabaseBuilder |
DatabaseBuilder.setPath(Path mdbFile) |
File containing an existing database for open() or target file for
new database for create() (in which case, tf this file already
exists, it will be overwritten.)
|
DatabaseBuilder |
DatabaseBuilder.setReadOnly(boolean readOnly) |
Sets flag which, iff true, will force opening file in
read-only mode ( open() only).
|
DatabaseBuilder |
DatabaseBuilder.setTimeZone(TimeZone timeZone) |
Sets the TimeZone to use for interpreting dates, if null, uses
default
|