API:FireDAC.Comp.Client.TFDEventAlerter.Names

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property Names;

C++

__property Names;

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