Package efrei.ngo.entity

Examples of efrei.ngo.entity.Floor


   
    try{
      Statement statement = conn.createStatement();
      String sql = "SELECT * FROM PostFloorList WHERE postID="+postID;
      ResultSet rs=statement.executeQuery(sql);
      Floor temp4add;
     
      while(rs.next()){
        temp4add=new Floor(rs.getString("postID"), rs.getString("floorID"), rs.getString("context"),
            efrei.ngo.util.GeneralUnil.changeDateToGregorianCalendar(rs.getDate("postDate")), new User(rs.getInt("owner")),new User(rs.getInt("toSomebody")));
        floorList.add(temp4add);
      }
      statement.close();
    }catch(Exception ex){
View Full Code Here

TOP

Related Classes of efrei.ngo.entity.Floor

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.