Package rife.database

Interface PreparedStatementHandler

All Known Implementing Classes:
DbPreparedStatementHandler
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 PreparedStatementHandler
By implementing this class it's possible to easily customize the behaviour of a large number of methods in the DbQueryManager class.

Implementing the setParameters method allows you to set the parameters of a DbPreparedStatement before the actual execution of any logic.

More extensive customizations are possible by extending the DbPreparedStatementHandler class instead.

Since:
1.0
See Also: