Package com.glyart.asql.common.functions
Interface PreparedStatementCreator
-
- All Known Implementing Classes:
DefaultCreator
- 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 PreparedStatementCreator
Represents a callback interface used by multiple methods of theDataTemplate
class.Implementations create a PreparedStatement with a given active Connection, provided by the DataTemplate class. Still, they are responsible for providing the SQL statement and any necessary parameters.
Implementations don't need to worry about handling exceptions: they will be handled by aSQL DataTemplate and passed to a CompletableFuture for further analysis by the user.
A default implementation called DefaultCreator is already provided.
- See Also:
DefaultCreator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PreparedStatement
createPreparedStatement​(Connection connection)
Creates a PreparedStatement in this connection.
-
-
-
Method Detail
-
createPreparedStatement
PreparedStatement createPreparedStatement​(@NotNull Connection connection) throws SQLException
Creates a PreparedStatement in this connection. There is no need to close the PreparedStatement: the DataTemplate class will do that.- Parameters:
connection
- the connection for creating the PreparedStatement- Returns:
- a PreparedStatement object
- Throws:
SQLException
- if something goes wrong during the PreparedStatement creation (no need to catch)
-
-