Interface StatementSettings

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 StatementSettings
Functional interface to apply settings onto a JDBC Statement.

For example: stmt -> stmt.setMaxRows(100).

Since:
9.2
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(Statement statment)
    Applies the settings on the statement.