Package com.etao.adhoc.analyse.vo

Examples of com.etao.adhoc.analyse.vo.StartDay


    }
    return list.toArray(new ModuleInfo[list.size()]);
  }
  public StartDay getStartDay(){
    String sql = "SELECT startday FROM start_day";
    StartDay startDay = null;
    Statement stmt=null;
    try {
      Connection conn = DriverManager.getConnection(url, username, password);

      stmt = conn.createStatement();
      ResultSet rs = stmt.executeQuery(sql);
      if(rs.next()){
        startDay = new StartDay();
        startDay.setStartDay(rs.getString(1));
      }
      LOG.info(stmt.toString());
      stmt.close();
      conn.close();
    } catch (SQLException e) {
View Full Code Here

TOP

Related Classes of com.etao.adhoc.analyse.vo.StartDay

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.