SQLiteDb

constructor(tableDefinitions: Set<DbTableData>, dbName: String, dbDirectory: Path = KSL.dbDir, deleteIfExists: Boolean = true)

This constructs a simple SQLite database on disk. The database will contain empty tables based on the table definitions. If the database already exists on disk, it will be deleted and recreated.

Return

an empty embedded SQLite database

Parameters

tableDefinitions

an example set of table definitions based on DbTableData specifications

dbName

the name of the database

dbDirectory

the directory containing the database. By default, KSL.dbDir.

deleteIfExists

If true, an existing database in the supplied directory with the same name will be deleted and an empty database will be constructed.


constructor(dbName: String, dbDirectory: Path = KSL.dbDir, deleteIfExists: Boolean = true)

Parameters

dbName

the name of the database

dbDirectory

the directory containing the database. By default, KSL.dbDir.

deleteIfExists

If true, an existing database in the supplied directory with the same name will be deleted and an empty database will be constructed.