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

org.xillium.data.persistence.ResultSetWorker Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.xillium.data.persistence;

import org.xillium.data.*;
import java.sql.*;


/**
 * All query results are passed to a ResultSetWorker, which processes the result set and produces an object of type T.
 */
public interface ResultSetWorker {
    public T process(ResultSet rs) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy