ResultSet 转为 List或者JavaBean
摘要:
一、将ResultSet结果集转换为List,其中每条记录信息保存为Map放到List中,方法如下:public static List> toMap(ResultSet rs) throws SQLException { if(rs == null) return null; ... 阅读全文
posted @ 2014-04-22 12:35 耿某 阅读(939) 评论(1) 推荐(0) 编辑