Hi,
When using SQL queries I generally dump the results into a table using the dumpquery command and then access the original table by getquerymatchtablerow. Sometimes elsewhere in the model another SQL query is made before the getquerymatchtablerow is called and thus the function fails to give the correct row. To get around this I need to call getquerymatchtablerow for all the rows returned by the query immediately after the query was made and put them into the query table into a new column. This seems like an extra step that could be included in the dumpquery function itself.
So my proposal is that you would develop the dumpquery to return the rows in the original table where the query rows where found and insert them into the result table, e.g. into a column added to the end of the table. This could be optional by adding a third optional parameter to the dumpquery command. Thus older models would not break.
How does this sound`?
Axel