Example #1
0
  public Idoc8DbAcsRec selectAcsInfo(DbConnection connection, int id) throws Exception {

    Idoc8DbAcsRec rec = new Idoc8DbAcsRec();

    DbSelectFns.select(connection, m_tblName, ACSCN, getDefaultQual(id), rec);

    return rec;
  }
Example #2
0
  public int selectAccCount(DbConnection connection, int id) throws Exception {
    int count;

    count =
        DbSelectFns.selectLongInteger(
            connection, m_tblName, getAccessCountColName(false), getDefaultQual(id));

    return count;
  }
Example #3
0
  public void selectRow(DbConnection connection, int id, DaoOutputXRow row) throws Exception {

    DbSelectFns.select(connection, m_tblName, ACN, getDefaultQual(id), row);
  }