首页>代码>spring+spring jdbc+spring mvc整合easyui搭建的SQL查询器>/remotesql/src/main/java/org/virtus/study/remotesql/app/base/data/QueryRowMapper.java
package org.virtus.study.remotesql.app.base.data;

import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Types;

import org.springframework.jdbc.core.RowMapper;

/**
 * Spring JDBC 查询默认Row mapper
 * 
 */
@SuppressWarnings("rawtypes")
public final class QueryRowMapper implements RowMapper
{
	private ResultSetMetaData meta;
	public Object mapRow(ResultSet rs, int rowNum) throws SQLException
	{
		if (this.meta == null) this.meta = rs.getMetaData();

		MapEx<String,?> map = new MapEx<String,Object>();
		for (int i = 1; i <= this.meta.getColumnCount(); i++)
		{
			/**
			 * getColumnName 在mysql下有问题,获取不到字段的别名( AS 后面的)
			 */
			//String key = this.meta.getColumnName(i);
			String key = this.meta.getColumnLabel(i);
			
			int columnType = this.meta.getColumnType(i);
			if (columnType == Types.TIMESTAMP || columnType == Types.DATE)
			{
				map.set(key, rs.getTimestamp(i));
			}
			else
			{
				map.set(key, rs.getString(i));
			}
		}
		return map;
	}
}
最近下载更多
vicgong  LV4 2022年5月23日
423256321  LV4 2021年1月7日
爱自己的修罗  LV7 2020年9月29日
cs1994814814  LV8 2020年4月21日
17600446733  LV21 2019年12月23日
花开为君顾  LV6 2019年11月18日
1106547553  LV10 2019年5月5日
zhangxu1111  LV11 2019年1月18日
但愿一生只爱一人  LV7 2018年11月27日
ReynLi  LV8 2018年7月31日
最近浏览更多
JIJI994  LV1 5月21日
chen影 2023年10月27日
暂无贡献等级
huangjie123456  LV5 2023年8月7日
sunhao111111  LV2 2023年7月27日
Dominick  LV14 2023年6月20日
akbar2020  LV9 2022年8月27日
vicgong  LV4 2022年5月23日
wyg1414530637 2022年4月1日
暂无贡献等级
刘亦菲9527  LV15 2022年2月12日
缘------  LV9 2021年8月31日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友