FireDAC.Stan.Option.TFDAutoFetchAll

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFDAutoFetchAll = (afAll, afTruncate, afDisable);

C++

enum DECLSPEC_DENUM TFDAutoFetchAll : unsigned int { afAll, afTruncate, afDisable };

Properties

Type Visibility Source Unit Parent
enum public
FireDAC.Stan.Option.pas
FireDAC.Stan.Option.hpp
FireDAC.Stan.Option FireDAC.Stan.Option

Description

Specifies the values to control automatic fetching of all records from a dataset cursor before disconnecting an associated command.

Name Description
afAll

The FetchAll method will be called.

afTruncate

Fetching from the cursor will be finished. Previously fetched records will be preserved.

afDisable

Will raise an exception, if not all records are fetched.

See Also