Package guru.mikelue.jdut.jdbc.function
This package contains out-of-box builder for
JdbcSupplier
or JdbcRunnable
on
processing of ResultSet
, Statement
, etc.Database Transaction
Transactional
is a implementation of SurroundOperator
for wrapping a JdbcFunction
to be transactional.
- See Also:
DbStatement
,DbResultSet
,DbRelease
-
Class Summary Class Description DbRelease Functions forAutoCloseable
, which are used to wrap existingJdbcFunction
for closing feature.DbResultSet Utility used to buildJdbcRunnable
orJdbcSupplier
for processing aResultSet
with some primitive values(e.g., SQL string).DbStatement Utility used to buildJdbcRunnable
orJdbcSupplier
for processing aStatement
orPreparedStatement
with other dependencies(e.g.,DataRow
).Transactional<T extends Connection,R> As surrounding of JDBC function for transactional wrapping.