FireDAC.Comp.Client.TFDCustomEventAlerter.Names

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Names: TStrings read FNames write SetNames;

C++

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

Properties

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

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