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

cn.featherfly.persistence.jdbc.RowMapper Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package cn.featherfly.persistence.jdbc;

import java.sql.ResultSet;

/**
 * 

* 记录行映射接口 *

* @param 要映射的具体类 * @author 钟冀 */ public interface RowMapper { /** *

* 映射记录到指定的对象 *

* @param res 结果集 * @param rowNum 行数 * @return 记录映射的对象 */ E mapRow(ResultSet res, int rowNum); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy