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

com.bixuebihui.jdbc.RowMapper 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;
import java.util.Collections;
import java.util.Locale;
import java.util.Set;

/**
 * 

RowMapper interface.

* * @author xingwx * @version $Id: $Id */ public interface RowMapper { /** * map fields in set fields, ignoring case. * * @param rs * @param index row index from 1; * @param fields if empty, then map all fields * @return Data object * @throws SQLException db exception if any */ T mapRow(ResultSet rs, int index, Set fields) throws SQLException ; // T mapRow(ResultSet rs, int index, Set fields, boolean keepNullForNumberField) ; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy