Enable database support in :engine

This commit is contained in:
2021-03-26 21:44:37 +01:00
parent 0cde898b51
commit dac79b9fd1
12 changed files with 147 additions and 3 deletions

View File

@@ -11,8 +11,6 @@ class DataSource(dbFile: File) {
init {
config.jdbcUrl = "jdbc:h2:file:${dbFile.absolutePath.replace("\\", "/")}"
config.username = "root"
config.password = ""
source = HikariDataSource(config)
}