<< Click to Display Table of Contents >> Navigation: Apollo VCL Components > Apollo VCL Component Reference > TApolloQuery > TApolloQuery Properties > FetchCount |
Declaration
property FetchCount: Integer;
Description
This indicates how many records at a time should be fetched from the server when receiving the result set from a SQL expression. The default value is 100. On faster connections, this value can be set higher (to 1000 or more) to read larger groups of records at a time. On slower connections, you may want to reduce this number.
Delphi Example
ApolloQuery1.FetchCount := 1000;
C++Builder Example
ApolloQuery1->FetchCount = 1000;