Uses of Interface
guru.mikelue.jdut.jdbc.JdbcFunction.SurroundOperator
-
Packages that use JdbcFunction.SurroundOperator Package Description guru.mikelue.jdut.jdbc This package provides coding library of JDBC by usage of lambda expression.
When we are coding database operations with JDBC, there are two things important, and, annoying: The handling ofSQLException
The release of resource This package is intent on "surrounding" your JDBC code by lambda expressions.guru.mikelue.jdut.jdbc.function This package contains out-of-box builder forJdbcSupplier
orJdbcRunnable
on processing ofResultSet
,Statement
, etc. -
-
Uses of JdbcFunction.SurroundOperator in guru.mikelue.jdut.jdbc
Methods in guru.mikelue.jdut.jdbc with parameters of type JdbcFunction.SurroundOperator Modifier and Type Method Description static <T,R>
JdbcFunction<T,R>JdbcTemplateFactory. surround(JdbcFunction<T,R> surroundedJdbcFunction, JdbcFunction.SurroundOperator<T,R>... surroundings)
Surrounds surroundedJdbcFunction with surroundings(by sequence).default JdbcFunction<T,R>
JdbcFunction. surroundedBy(JdbcFunction.SurroundOperator<T,R> surroundOperator)
Surrounds this function byJdbcFunction.SurroundOperator
.default JdbcFunction<T,Void>
JdbcVoidFunction. surroundedBy(JdbcFunction.SurroundOperator<T,Void> surroundOperator)
Surrounds this function byJdbcFunction.SurroundOperator
. -
Uses of JdbcFunction.SurroundOperator in guru.mikelue.jdut.jdbc.function
Classes in guru.mikelue.jdut.jdbc.function that implement JdbcFunction.SurroundOperator Modifier and Type Class Description class
Transactional<T extends Connection,R>
As surrounding of JDBC function for transactional wrapping.
-