Datasnap.Provider.TBaseProvider.OnGetData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnGetData: TProviderDataEvent read FOnGetData write FOnGetData;

C++

__property TProviderDataEvent OnGetData = {read=FOnGetData, write=FOnGetData};

Properties

Type Visibility Source Unit Parent
event public
Datasnap.Provider.pas
Datasnap.Provider.hpp
Datasnap.Provider TBaseProvider

Description

Occurs after a provider retrieves data but before it is sent to the client.

Write an OnGetData event handler to perform any custom data processing the provider should handle before returning data to a client. The OnGetData event occurs after a provider fetches data from its dataset but before the data is sent on to the client. Using the methods of the DataSet parameter, data can be edited in the OnGetData event handler before sending it to the client dataset or XML broker.

Note: OnGetData occurs when the Data property is read, as well as when the GetRecords method is called.

OnGetData is an event handler of type Datasnap.Provider.TProviderDataEvent.

See Also