`
孤星119
  • 浏览: 124618 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

用Map封装数据库查询结果集

 
阅读更多

用Map封装数据库查询结果集

List list=new ArrayList();

ResultSetMetaData md=rs.getMetaData();
int columnCount=md.getColumnCount();

Map map = null;   
while (rs.next()) {   
	map = new HashMap(columnCount);   
	for (int i = 1; i <= columnCount; i++) {   
		map.put(md.getColumnName(i), rs.getObject(i));   
	}   
	list.add(map); 
}

  

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics