DatabaseAccess
internal class DatabaseAccess(jdbcTemplate: JdbcTemplate, transactionProvider: JdbcTransactionProvider, typeRegistry: TypeRegistry, kotlinToPostgresConverter: KotlinToPostgresConverter, listenerConnectionFactory: () -> Connection, onClose: () -> Unit? = null) : DataAccess
Constructors
Link copied to clipboard
constructor(jdbcTemplate: JdbcTemplate, transactionProvider: JdbcTransactionProvider, typeRegistry: TypeRegistry, kotlinToPostgresConverter: KotlinToPostgresConverter, listenerConnectionFactory: () -> Connection, 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, timeoutSeconds: Int?): DataResult<TransactionPlanResult>
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, timeoutSeconds: Int?, block: (tx: QueryOperations) -> DataResult<T>): DataResult<T>
Link copied to clipboard