FireDAC.Comp.Client.TFDEventAlerter.Names

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Names;

C++

__property Names;

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_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