Package efrei.ngo.entity

Examples of efrei.ngo.entity.ResourcePiece


  public static ArrayList<ResourcePiece> dbGetRSList(String sql){
    ArrayList<ResourcePiece> list=new ArrayList<ResourcePiece>();
    try{
      Statement statement=conn.createStatement();
      ResultSet rs=statement.executeQuery(sql);
      ResourcePiece oneRS;
     
      while(rs.next()){
        oneRS=new ResourcePiece(rs.getInt("id_rs"), rs.getString("name"), rs.getString("type"), rs.getString("country"),
      rs.getString("city"), rs.getDouble("quantity"), rs.getString("unit"), rs.getDate("lu_date"));
        list.add(oneRS);
      }
      statement.close();
    }catch(Exception ex){
View Full Code Here

TOP

Related Classes of efrei.ngo.entity.ResourcePiece

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.