Chinaunix首页 | 论坛 | 博客
  • 博客访问: 970189
  • 博文数量: 358
  • 博客积分: 8185
  • 博客等级: 中将
  • 技术积分: 3751
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-15 16:27
个人简介

The views and opinions expressed all for my own,only for study and test, not reflect the views of Any Company and its affiliates.

文章分类

全部博文(358)

文章存档

2012年(8)

2011年(18)

2010年(50)

2009年(218)

2008年(64)

我的朋友

分类: Java

2008-10-15 16:33:01

 private static List convertList(ResultSet rs) throws SQLException {
  List list = new ArrayList();
  ResultSetMetaData md = rs.getMetaData();
  int columnCount = md.getColumnCount();
  //Map rowData;
  while (rs.next()) {
   //rowData = new HashMap(columnCount);
   Map rowData = new HashMap();
   for (int i = 1; i <= columnCount; i++) {
    rowData.put(md.getColumnName(i), rs.getObject(i));
   }
   list.add(rowData);
  }
  return list;
 }
阅读(5010) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:IO 操作 文件读取

给主人留下些什么吧!~~