FireDAC.Comp.Client.TFDReleaseClientMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFDReleaseClientMode = (rmFetchAll, rmClose, rmOffline, rmDisconnect);

C++

enum DECLSPEC_DENUM TFDReleaseClientMode : unsigned int { rmFetchAll, rmClose, rmOffline, rmDisconnect };

Properties

Type Visibility Source Unit Parent
enum public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client FireDAC.Comp.Client

Description

Specifies the release client mode.

TFDReleaseClientMode specifies the following types of release client:

Name Description

rmFetchAll

Performs the FetchAll operations, if the dataset is active and not all records are fetched. If the dataset is unidirectional, then it is closed. All active commands are closed. 

rmClose

Closes all datasets and commands. 

rmOffline 

Brings all datasets to offline mode, when all records are fetched. All commands are closed and unprepared. 

rmDisconnect

All datasets and commands are closed and unprepared. 

See Also