Examples of ProgramDAO


Examples of pl.lodz.p.cm.ctp.dao.ProgramDAO

  }

  @Override
  public void run() {
    DAOFactory dbase = DAOFactory.getInstance(Epgd.config.database);
    ProgramDAO programDAO = dbase.getProgramDAO();
   
    try {
      boolean result = programDAO.deleteOlderThan(myConfig.olderThanDays);
      if (result) {
        Epgd.log("Pomyślnie usunieto ostatnie " + myConfig.olderThanDays + " dni z EPG");
      }
    } catch (DAOException e) {
      Epgd.error("Wystapił błąd bazy: " + e.getMessage());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.