DatabaseAccess
internal class DatabaseAccess(jdbcTemplate: JdbcTemplate, transactionProvider: JdbcTransactionProvider, typeRegistry: TypeRegistry, kotlinToPostgresConverter: KotlinToPostgresConverter, listenerConnectionFactory: () -> Connection, val json: Json, onClose: () -> Unit? = null) : DataAccess
Constructors
Link copied to clipboard
constructor(jdbcTemplate: JdbcTemplate, transactionProvider: JdbcTransactionProvider, typeRegistry: TypeRegistry, kotlinToPostgresConverter: KotlinToPostgresConverter, listenerConnectionFactory: () -> Connection, json: Json, onClose: () -> Unit? = null)
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun executeTransactionPlan(plan: TransactionPlan, propagation: TransactionPropagation, isolation: IsolationLevel, readOnly: Boolean, statementTimeout: Duration?, transactionTimeout: Duration?): DataResult<TransactionPlanResult>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun <T> transaction(propagation: TransactionPropagation, isolation: IsolationLevel, readOnly: Boolean, statementTimeout: Duration?, transactionTimeout: Duration?, block: QueryOperations.() -> DataResult<T>): DataResult<T>
Link copied to clipboard