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

com.mario6.common.db.mapper.RowMapper Maven / Gradle / Ivy

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy