Package nu.lazy8.ledger.jdbc

Examples of nu.lazy8.ledger.jdbc.DatabaseBackup.RestoreDatabase()


    if (dc == null || !dc.bIsConnectionMade) {
      return;
    }
    DatabaseBackup db = new DatabaseBackup(
        dc.con);
    db.RestoreDatabase(true, null, 0, view);
  }//}}}

  //{{{ +_createRestoreFile(Connection, boolean, String, int, JFrame)_ : void
    /**
   *  Description of the Method
View Full Code Here


   * @param  view                    Description of the Parameter
   */
  public static void createRestoreFile(Connection con,
      boolean bRestoreOneCompanyOnly, String fileName, int iNewCompany, JFrame view) {
    DatabaseBackup db = new DatabaseBackup(con);
    db.RestoreDatabase(bRestoreOneCompanyOnly, fileName, iNewCompany, view);
  }//}}}

  //{{{ +_createRestoreFrame(JFrame)_ : void
    /**
   *  Description of the Method
View Full Code Here

    if (dc == null || !dc.bIsConnectionMade) {
      return;
    }
    DatabaseBackup db = new DatabaseBackup(
        dc.con);
    db.RestoreDatabase(false, null, 0, view);
  }//}}}

  //{{{ +_setAllTemporaryProperties()_ : void
    /**
   *  Sets the allTemporaryProperties attribute of the Lazy8LedgerPlugin class
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.