Database
Inheritors
Properties
the DataSource backing the database
Sets the name of the default schema
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.
Functions
Releases the resources this database holds so its backing files can be deleted or replaced. Idempotent. After close the database is unusable: metadata and query operations route through longLastingConnection, which is now closed.
It is best to use this function within a try-with-resource construct This method calls the DataSource for a connection from the underlying DataSource. You are responsible for closing the connection.