com.bixuebihui.jdbc.RowCallbackHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c-dbtools Show documentation
Show all versions of c-dbtools Show documentation
a fast small database connection pool and a active record flavor mini framework
package com.bixuebihui.jdbc;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* RowCallbackHandler interface.
*
* @author xingwx
* @version $Id: $Id
*/
public interface RowCallbackHandler
{
/**
* processRow.
*
* @param resultset a {@link java.sql.ResultSet} object.
* @throws java.sql.SQLException if any.
*/
void processRow(ResultSet resultset) throws SQLException;
}