Package net.sourceforge.wampum.finance.entities

Examples of net.sourceforge.wampum.finance.entities.BudgetDAO.load()


 
  private static String[] columnNames = {"Month", "Year", "Amount", "Balance", "Status"};
  public void updateBudgetTableData() {
    if (this.currentAccount != null) {
      BudgetDAO budgetDAO = (BudgetDAO)daoFactory.getDAO("budget");
      budgetList = budgetDAO.load("WHERE ACCOUNT_ID = '" + this.currentAccount.getAccountID() + "'", "ORDER BY YEAR, MONTH", true);
     
      RegisterDAO registerDAO = (RegisterDAO)daoFactory.getDAO("register");
      balanceList = registerDAO.loadBalancesForAccount(this.currentAccount.getAccountID());
    }
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.