ListView 使用 LiveBindings 預設加載 200 條記錄,這也許是速度的考量,但當需要全部加載的的情況時,該如何做呢?只需加入下面二行代碼即可:
FDQuery1.OptionsIntf.FetchOptions.RecsMax := -1; FDQuery1.OptionsIntf.FetchOptions.AutoFetchAll := afAll;
ps. 以上實測加載七萬條記錄,在 Windows 7 約要十幾秒的時間。
參考資料:http://codeverge.com/embarcadero.delphi.firedac/getting-max-200-rows-from-tfdquery/1989036