For Unidac3.00.0.10,I have problem:
For Mysql,
FetchAll:=False,QueryrecCount:=False,The RecordCount is 25.
FetchAll:=False,QueryrecCount:=True,The RecordCount is all record.FetchAll Funtion is invalid.
But I want Showing real RecordCount on FetchAll:=False.Why?
About QueryrecCount&FetchAll.
If QueryRecCount = True, and FetchAll = False, TCustomMyDataSet performs additional query to get the record count for this SELECT, so the RecordCount property reflects the number of records of the whole result set that is the count of records that will be fetched.
If QueryRecCount = False, RecordCount reflects the number of fetched records. To fetch next batch of records use the Next method.
If QueryRecCount = False, RecordCount reflects the number of fetched records. To fetch next batch of records use the Next method.