Hello.
I have a TClientDataSet, and I set the parameter FetchOnDemand := False
and PacketRecords := 10
;
In event AfterScroll
I call GetNextPacket
, and in this way I have demand control of the data.
However, if I have a very large table, and it is up to the last record, giving a Refresh
might take a long time.
In this way, I would like to know if I have to remove one package when requesting another, that is, when I call the GetNextPacket
.