Package-level declarations
Types
Represents a connection to a database within the Octavius Framework. It implements the standard JDBC Connection interface but overrides certain behaviors to fit the framework's architecture.
Factory object responsible for establishing physical connections to a PostgreSQL database.
Implementation of the standard JDBC DataSource interface for the Octavius driver.
The main entry point for the JDBC API into the Octavius driver.
A stub implementation of java.sql.Statement. It primarily exists to allow connection pools (such as HikariCP) to execute connectionInitSql or connectionTestQuery using standard JDBC calls.
Functions
Establishes a new OctaviusSession using the specified properties.
Establishes a new OctaviusSession using the specified url and properties properties.
Establishes a new OctaviusSession using the specified url, user, and password.
Retrieves a new OctaviusSession from this DataSource.
Retrieves a new OctaviusSession from this Connection.
Retrieves a new OctaviusSession from this DataSource using the specified credentials.
Unwraps this Connection to an instance of the specified type T.
Unwraps this DataSource to an instance of the specified type T.
Unwraps this DataSource to its underlying OctaviusDataSource instance.