All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.db.helper.JdbcResultFactory Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package play.db.helper;

import java.sql.ResultSet;
import java.sql.SQLException;

public interface JdbcResultFactory {

    public void init(ResultSet result) throws SQLException;

    public T create(ResultSet result) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy