@FunctionalInterface public interface ConnectionCallable<T>
Connection
.Modifier and Type | Method and Description |
---|---|
T |
run(Connection connection)
Run statements.
|
T run(Connection connection) throws Exception
Implementations may freely use the argument Connection
to run
statements against the database. Implementations MUST manage the
lifecycle of any resources created from this connection
,
such as Statement
or ResultSet
. Implementations MUST NOT
manage the lifecycle of the Connection
, which is managed by the
ConnectionProvider
that provided the connection
to
this ConnectionCallable
.
connection
- The connection.Exception
- Any exception, including SQLException
, that
will be propagated as an unchecked
DataAccessException
.Copyright © 2016. All Rights Reserved.