免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3777 | 回复: 1
打印 上一主题 下一主题

ResultSet怎样取某一列的所有值 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-02-07 18:51 |只看该作者 |倒序浏览
ResultSet的一个结果集,只有一列,我想取得那一列的所有值,该怎么取?

有用过的麻烦给给建议,谢谢!

论坛徽章:
0
2 [报告]
发表于 2012-02-14 17:55 |只看该作者
  1.         public ArrayList<Object[]> readDbResult(ResultSet rs) {
  2.                 if (rs == null) {
  3.                         return null;
  4.                 }
  5.                 ArrayList<Object[]> temp = new ArrayList<Object[]>();
  6.                 Object[] tempo ;
  7.                 int columnCount;
  8.                 try{
  9.                         columnCount = rs.getMetaData().getColumnCount();
  10.                         while (rs.next()) {
  11.                                 tempo = new Object[columnCount];
  12.                                 for (int i = 0; i < columnCount; i++) {
  13.                                         System.out.println(rs.getMetaData().getColumnName(i+1));
  14.                                         if (rs.getMetaData().getColumnType(i + 1) == 2005) {
  15.                                                 tempo[i]  = rs.getString(i + 1);
  16.                                         } else {
  17.                                                 tempo[i] = rs.getObject(i + 1);
  18.                                         }
  19.                                        
  20.                                 }
  21.                                 temp.add(tempo);
  22.                                 tempo = null;
  23.                         }
  24.                 }catch(Exception e){
  25.                         e.printStackTrace();
  26.                 }
  27.                 if(temp.size()==0){
  28.                         return null;
  29.                 }
  30.                 return temp;
  31.         }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP