com.jpattern.orm.session.ResultSetReader Maven / Gradle / Ivy
package com.jpattern.orm.session;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
*
* @author Francesco Cina
*
* 02/lug/2011
*
* Permits to work on the ResultSet resulting of a query execution.
*/
public interface ResultSetReader {
T read(ResultSet resultSet) throws SQLException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy