Uses of Interface
guru.mikelue.jdut.jdbc.SQLExceptionConvert
-
Packages that use SQLExceptionConvert Package Description guru.mikelue.jdut jdata-unit-test(JDUT) is a framework to ease the data building/cleaning for automatic testing, which the test is repeatable without interfere each other.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.operation The most important objects to effect data to database. -
-
Uses of SQLExceptionConvert in guru.mikelue.jdut
Methods in guru.mikelue.jdut that return types with arguments of type SQLExceptionConvert Modifier and Type Method Description Optional<SQLExceptionConvert<?>>
ConductorConfig. getSqlExceptionConvert()
Gets the function for conversion ofSQLException
.Methods in guru.mikelue.jdut with parameters of type SQLExceptionConvert Modifier and Type Method Description <E extends RuntimeException>
ConductorConfig.BuilderConductorConfig.Builder. sqlExceptionConvert(SQLExceptionConvert<E> newSqlExceptionConvert)
Sets the conversion forSQLException
. -
Uses of SQLExceptionConvert in guru.mikelue.jdut.jdbc
Methods in guru.mikelue.jdut.jdbc with parameters of type SQLExceptionConvert Modifier and Type Method Description default <E extends RuntimeException>
Consumer<T>JdbcVoidFunction. asConsumer(SQLExceptionConvert<E> exceptionConvert)
Converts this expression toConsumer
, with customizedSQLExceptionConvert
.default <E extends RuntimeException>
Function<T,R>JdbcFunction. asFunction(SQLExceptionConvert<E> exceptionConvert)
Converts this expression toFunction
, with customizedSQLExceptionConvert
.default <E extends RuntimeException>
RunnableJdbcRunnable. asRunnable(SQLExceptionConvert<E> exceptionConvert)
Converts this expression toRunnable
, with customizedSQLExceptionConvert
.default <E extends RuntimeException>
Supplier<R>JdbcSupplier. asSupplier(SQLExceptionConvert<E> exceptionConvert)
Converts this expression toSupplier
, with customizedSQLExceptionConvert
. -
Uses of SQLExceptionConvert in guru.mikelue.jdut.operation
Methods in guru.mikelue.jdut.operation with parameters of type SQLExceptionConvert Modifier and Type Method Description default <E extends RuntimeException>
BiConsumer<Connection,DataGrain>DataGrainOperator. asBiConsumer(SQLExceptionConvert<E> sqlExceptionConvert)
-