pers.clare.hisql.function.PreparedStatementCallback Maven / Gradle / Ivy
The newest version!
package pers.clare.hisql.function;
import java.sql.PreparedStatement;
import java.sql.SQLException;
@SuppressWarnings("RedundantThrows")
@FunctionalInterface
public interface PreparedStatementCallback {
R apply(PreparedStatement preparedStatement) throws SQLException;
}