package bjc.utils.misc; import java.sql.PreparedStatement; import java.sql.SQLException; @FunctionalInterface interface Binder { void bind(PreparedStatement ps, int index) throws SQLException; }