public Idoc8DbAcsRec selectAcsInfo(DbConnection connection, int id) throws Exception { Idoc8DbAcsRec rec = new Idoc8DbAcsRec(); DbSelectFns.select(connection, m_tblName, ACSCN, getDefaultQual(id), rec); return rec; }
public int selectAccCount(DbConnection connection, int id) throws Exception { int count; count = DbSelectFns.selectLongInteger( connection, m_tblName, getAccessCountColName(false), getDefaultQual(id)); return count; }
public void selectRow(DbConnection connection, int id, DaoOutputXRow row) throws Exception { DbSelectFns.select(connection, m_tblName, ACN, getDefaultQual(id), row); }