Package io.ultreia.java4all.util.sql
Interface SqlWork
-
- All Known Implementing Classes:
SqlScriptConsumer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SqlWork
Functional interface to execute some sql code within a possibleSQLExceptionthrown.- Since:
- 1.1.0
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(Connection connection)Execute the discrete work encapsulated by this work instance using the supplied connection.
-
-
-
Method Detail
-
execute
void execute(Connection connection) throws SQLException
Execute the discrete work encapsulated by this work instance using the supplied connection.- Parameters:
connection- The connection on which to perform the work.- Throws:
SQLException- Thrown during execution of the underlying JDBC interaction.
-
-