Database
open class Database @JvmOverloads constructor(val dataSource: DataSource, var label: String, var defaultSchemaName: String? = null) : DatabaseIfc(source)
Inheritors
Properties
Link copied to clipboard
the DataSource backing the database
Link copied to clipboard
Sets the name of the default schema
Link copied to clipboard
A connection that is meant to be used many times before manual closing. Many functions rely on this connection as their default connection. Do not close this connection unless you are really finished with the database. Since, this property is final it cannot be restored after closing.
Link copied to clipboard