blob: e6575922722e4ede8926b820b8d554526911f44e (
plain)
1
2
3
4
5
6
7
8
|
package bjc.utils.misc;
import java.sql.PreparedStatement;
import java.sql.SQLException;
@FunctionalInterface interface Binder {
void bind(PreparedStatement ps, int index) throws SQLException;
}
|