Interface PreparedStatementCallback<T>

  • Type Parameters:
    T - The result type
    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 PreparedStatementCallback<T>
    Represents a callback interface for code that operates on a PreparedStatement. This is internally used by the DataTemplate class but it's also useful for custom purposes.

    Note: the passed-in PreparedStatement can have been created by aSQL or by a custom PreparedStatementCreator implementation. However, the latter is hardly ever necessary, as most custom callback actions will perform updates in which case a standard PreparedStatement is fine. Custom actions will always set parameter values themselves, so that PreparedStatementCreator capability is not needed either.

    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.

    See Also:
    DataTemplate.execute(String, PreparedStatementCallback), DataTemplate.execute(PreparedStatementCreator, PreparedStatementCallback)