如何把数据库中的数据存储在list中

为了力求封装,我们把数据库中的数据取出放在list中。然后返回list,再在另一个页面读取list中的值。

public static List executeQuery(String sql) throws Exception



  {



  List list = new ArrayList();



  Connection conn = null;



  Statement stmt = null;



  ResultSet rs = null;



  try



  {



  conn = openConnection();



  stmt = conn.createStatement();



  rs = stmt.executeQuery(sql);



  ResultSetMetaData rsmd = rs.getMetaData();//获取表中的字段名字



  while ( rs.next() )



  {



  Map map = new HashMap();



  for ( int i = 1; i < = rsmd.getColumnCount(); i++ )//获取列然后存储入map



  {



  map.put(rsmd.getColumnName(i), rs.getObject(i));



  }



  list.add(map);



  } }



  catch ( Exception e )



  {



  e.printStackTrace();



  }



  finally



  {



  if ( rs != null ) rs.close();



  closeConnection(conn);



  }



  return list; 
     }



  }



你可能感兴趣的:(sql)