Hello,
with the following line I want to count the rows in the SQL result:
rows := TMySQLclient.num_rows (MySQLResult);
Delphi 6 says it did not know the variable num_rows, what is wrong ?
Thanks
Use MySQLResult.RowsCount to determine how many rows the result has.
Good luck..
Log in to post a comment.
Hello,
with the following line I want to count the rows in the SQL result:
rows := TMySQLclient.num_rows (MySQLResult);
Delphi 6 says it did not know the variable num_rows, what is wrong ?
Thanks
Use MySQLResult.RowsCount to determine how many rows the result has.
Good luck..