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

com.dao.support.database.StringMapper 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 StringMapper implements  RowMapper {

	
	public String mapRow(ResultSet rs, int rowNum) throws SQLException {
		String str = rs.getString(1);
		return str;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy