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

com.dao.support.database.IntegerMapper Maven / Gradle / Ivy

The newest version!
package com.dao.support.database;

import java.sql.ResultSet;
import java.sql.SQLException;

import org.springframework.jdbc.core.RowMapper;

public class IntegerMapper implements RowMapper {
	
	public Integer mapRow(ResultSet rs, int rowNum) throws SQLException {
		Integer  v = rs.getInt(1);
		return v;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy