Uses of Interface
com.mckoi.database.control.DBConfig
Packages that use DBConfig
Package
Description
The core database classes for Mckoi.
The JDBC interface to Mckoi.
Implementation of the DatabaseInterface interface,
including classes to handle local (embedded) mode
and remote (client/server) mode.
-
Uses of DBConfig in com.mckoi.database
Methods in com.mckoi.database with parameters of type DBConfig -
Uses of DBConfig in com.mckoi.database.control
Classes in com.mckoi.database.control that implement DBConfigModifier and TypeClassDescriptionclass
An abstract implementation of DBConfig.class
Implements a default database configuration that is useful for setting up a database.Methods in com.mckoi.database.control that return DBConfigModifier and TypeMethodDescriptionDBSystem.getConfig()
Returns an immutable version of the database system configuration.AbstractDBConfig.immutableCopy()
DBConfig.immutableCopy()
Makes an immutable copy of this configuration.Methods in com.mckoi.database.control with parameters of type DBConfigModifier and TypeMethodDescriptionDBController.createDatabase
(DBConfig config, String admin_user, String admin_pass) Creates a database in the local JVM (and filesystem) given the configuration in DBConfig and returns a DBSystem object.boolean
DBController.databaseExists
(DBConfig config) Returns true if a Mckoi database exists in the given directory of the file system, otherwise returns false if the path doesn't contain a database.DBController.startDatabase
(DBConfig config) Starts a database in the local JVM given the configuration in DBConfig and returns a DBSystem object. -
Uses of DBConfig in com.mckoi.database.jdbc
Methods in com.mckoi.database.jdbc with parameters of type DBConfigModifier and TypeMethodDescriptionBoots the database with the given configuration.boolean
LocalBootable.checkExists
(DBConfig config) Attempts to test if the database exists or not.Attempts to create a new database system with the given name, and the given username/password as the admin user for the system. -
Uses of DBConfig in com.mckoi.database.jdbcserver
Methods in com.mckoi.database.jdbcserver with parameters of type DBConfigModifier and TypeMethodDescriptionBoots the local database with the given configuration.boolean
DefaultLocalBootable.checkExists
(DBConfig config) Attempts to test if the database exists or not.Creates and boots a local database with the given configuration.