Uses of Class
acdp.exceptions.CreationException
Packages that use CreationException
Package
Description
Contains the core interfaces needed to operate a database.
Contains classes for designing an ACDP database.
Contains classes that are only needed in special cases.
-
Uses of CreationException in acdp
Methods in acdp that throw CreationExceptionModifier and TypeMethodDescriptionvoid
Database.createRO
(Path roDbFilePath, ICipherFactory cipherFactory) Creates an RO database from the data stored in this database, which must be a WR database.static Database
Database.open
(Path mainFile, int opMode, boolean writeProtect, ICipherFactory cipherFactory) Opens the database as a weakly typed database. -
Uses of CreationException in acdp.design
Methods in acdp.design that throw CreationExceptionModifier and TypeMethodDescriptionfinal void
CustomDatabase.createRO
(Path roDbFilePath, ICipherFactory cipherFactory) protected final void
CustomDatabase.open
(Path mainFile, int opMode, boolean writeProtect, ICipherFactory cipherFactory, int consistencyNumber, CustomTable... customTables) Opens the database as a strongly typed database.Constructors in acdp.design that throw CreationException -
Uses of CreationException in acdp.misc
Methods in acdp.misc that throw CreationExceptionModifier and TypeMethodDescriptionstatic final void
ACDP.deleteDBFiles
(Path layoutFile, boolean deleteLayoutFile) Deletes the backing files of the specified WR database and optionally deletes the layout file too, thus completely removing the database. -
Uses of CreationException in acdp.tools
Methods in acdp.tools that throw CreationExceptionModifier and TypeMethodDescriptionstatic final void
Refactor.addTable
(Path layoutFile, String tableName, CustomTable table, Refactor.Names names) Adds the specified table to the specified WR database.static final double
Refactor.dropColumn
(Path layoutFile, String tableName, String columnName) Removes the specified column from the specified table.static final void
Removes the specified table from the specified WR database.static final <T> void
Refactor.insertColumn
(Path layoutFile, ICipherFactory cipherFactory, String tableName, String columnName, Column<T> column, String refdTableName, int index, T initialValue) Inserts the specified column into the table definition of the specified table at the position given by theindex
argument.static final <T> double
Refactor.modifyColumn
(Path layoutFile, ICipherFactory cipherFactory, String tableName, String columnName, Column<T> column, Table.ValueSwitcher<T> valueSwitcher) Modifies the specified column of the specified table by replacing that column with the specified new column.static final void
Refactor.nobsOutrowPtr
(Path layoutFile, String tableName, int value) Changes the value of thenobsOutrowPtr
property of the specified table to the specified value.static final void
Refactor.nobsRefCount
(Path layoutFile, String tableName, int value) Changes the value of thenobsRefCount
property of the specified table to the specified value.static final void
Refactor.nobsRowRef
(Path layoutFile, String tableName, int value) Changes the value of thenobsRowRef
property of the specified table to the specified value.static final void
Writes to the standard output stream a few key figures of the stores of the tables of the specified WR database.