com.mario6.common.db.mapper.RowMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-jdbc Show documentation
Show all versions of spring-jdbc Show documentation
一个简单的jdbc封装库,大多数api接口与spring-jdbc类似
The newest version!
package com.mario6.common.db.mapper;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* 数据库行结果集映射为特定对象的接口
* @param
*/
public interface RowMapper {
T rowMap(ResultSet rs) throws SQLException;
}