Package pl.lodz.p.cm.ctp.dao

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


    this.myConfig = config;
  }

  @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");
View Full Code Here

TOP

Related Classes of pl.lodz.p.cm.ctp.dao.DAOFactory

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.