Package com.glyart.asql.common.functions
Interface PreparedStatementSetter
-
- All Known Implementing Classes:
DefaultSetter
- 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 PreparedStatementSetter
Represents a callback interface used byDataTemplate
.Implementations of this interface set values on a
PreparedStatement
provided by the DataTemplate class. They are responsible for setting parameters: a SQL statement with placeholders (question marks) will already have been supplied.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 DefaultSetter is already provided.
- See Also:
DefaultSetter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setValues(PreparedStatement ps)
Sets parameter values into the given active PreparedStatement.
-
-
-
Method Detail
-
setValues
void setValues(@NotNull PreparedStatement ps) throws SQLException
Sets parameter values into the given active PreparedStatement.- Parameters:
ps
- the PreparedStatement to invoke setter methods on- Throws:
SQLException
- if an SQLException is encountered while trying to set values (no need to catch)
-
-