API:FireDAC.Comp.Client.TFDEventAlerter.Names
Delphi
property Names: TStrings read FNames write SetNames;
C++
__property Names;
Contents
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | published | FireDAC.Comp.Client.pas FireDAC.Comp.Client.hpp |
FireDAC.Comp.Client | TFDEventAlerter |
Description
Specifies the event names handled by this alerter.
FireDAC.Comp.Client.TFDEventAlerter.Names inherits from FireDAC.Comp.Client.TFDCustomEventAlerter.Names. All content below this line refers to FireDAC.Comp.Client.TFDCustomEventAlerter.Names.
Specifies the event names handled by this alerter.
Use the Names property to specify the event names.
The event alerter will be notified only about the listed events.
Note: The Oracle
DBMS_PIPEevent alerter supports only one event name. The event names may be case-sensitive or case-insensitive, depending on the DBMS.
Example
with FDEventAlerter1 do begin
Unregister;
Names.Clear;
Names.Add('Customers');
Names.Add('Orders');
Register;
end;