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

pers.clare.hisql.function.ResultSetValueConverter Maven / Gradle / Ivy

The newest version!
package pers.clare.hisql.function;

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

@FunctionalInterface
public interface ResultSetValueConverter {
    T apply(ResultSet resultSet, int index) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy