✏️ Explanatory Question

Where is the query executed in the DP class?

👁 11 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

The query is executed inside the processReport() method.


public void processReport()
{
    QueryRun queryRun = new QueryRun(this.parmQuery());

    while (queryRun.next())
    {
        SalesTable salesTable = queryRun.get(tableNum(SalesTable));
    }
}