i.e I would like to count the rows in a whole table. What I've done so far is:
TableName->FilterSQL = ""; // To remove earlier FilterSQL properties.
IntVar = TableName->RecordCount;
This is however pretty slow when the amount of rows exceeds 10000 and more. And I was thinking if I could let the MySQL server handle this calculation by calling a Query like:
SELECT COUNT (*) FROM TableName;
Am I right if I'm saying that this function does not return any rows however it return a INT value. How do I extract this value?
How would I do this? What Components would I use? A simple example would be very much appreciated
Best regards,
Hannes Palmquist