Chinaunix首页 | 论坛 | 博客
  • 博客访问: 970192
  • 博文数量: 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)

我的朋友

分类:

2008-10-21 08:42:45

//连接DB
 
AXXX{
 
  String sDBDriver = "oracle.jdbc.OracleDriver";
  String url = "jdbc:oracle:thin:@43.82.101.107:1541:gaudi01";
  String user = "scott";
  String pwd = "tiger";
  Class.forName(sDBDriver);
  conn = DriverManager.getConnection(url, user, pwd);
  String sql = "select * from bigtable order by object_id desc";
  Statement stmt = conn.createStatement();
  
  ResultSet rs = stmt.executeQuery(sql);
  
  List list = getList(rs);
 
}
 
//RS转换为List
 public static List getList(ResultSet rs) throws Exception{
  List list = new ArrayList();
  ResultSetMetaData rd =  rs.getMetaData();
  
  while(rs.next()){
   int icount = rd.getColumnCount();
   Map map = new HashMap();
   for(int i = 1 ;i<=icount;i++){
    map.put(rd.getColumnName(i),rs.getObject(rd.getColumnName(i)));
   }
   list.add(map);
  }
  return list;
  
 }
阅读(709) | 评论(0) | 转发(0) |
0

上一篇:trunc

下一篇:create table

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