Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a log file associated to my qvw but I'd like to also log how many records each resident table has when I reload the file. Any idea how to do this?
Hello Igor,
If you stock the number of records into a variable, you could see that value using the debogger mode.
The function is NoOfRows(TableName).
Martin
Hello Igor,
If you stock the number of records into a variable, you could see that value using the debogger mode.
The function is NoOfRows(TableName).
Martin
I will try that, thanks.
Hello, Igor,
Here is the example:
let vtext = '---------------------->>>Orders Count: ' & num(NoOfRows('TableName'), '#,##0');
trace $(vtext);
TRACE --->> Loading;