FireDAC.Comp.Client.TFDCustomEventAlerter.Names

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDCustomEventAlerter

Delphi

property Names: TStrings read FNames write SetNames;

C++

__property System::Classes::TStrings* Names = {read=FNames, write=SetNames};

Description

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_PIPE event 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;

See Also