com.jpattern.orm.session.PreparedStatementSetter Maven / Gradle / Ivy
package com.jpattern.orm.session;
import java.sql.PreparedStatement;
import java.sql.SQLException;
/**
*
* Set the values of a PreparedStatement
*
* @author ufo
*
*/
public interface PreparedStatementSetter {
/**
*
* @param ps the prepared statement
* @throws SQLException
*/
void set(PreparedStatement ps) throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy