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

com.bixuebihui.jdbc.RowCallbackHandler Maven / Gradle / Ivy

Go to download

a fast small database connection pool and a active record flavor mini framework

There is a newer version: 1.15.3.3
Show newest version
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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy