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

com.googlecode.jdbcproc.daofactory.impl.block.IResultSetConverterBlock Maven / Gradle / Ivy

The newest version!
package com.googlecode.jdbcproc.daofactory.impl.block;

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

/**
 * Converts result ser to
 */
public interface IResultSetConverterBlock {
    /**
     * Converts result set to dao method return type
     * 
     * @param aResultSet result set
     * @param aStmt callable statement
     * @return dao method return type instance
     * @throws java.sql.SQLException exception on error
     */
    Object convertResultSet(ResultSet aResultSet, CallableStatement aStmt) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy