API:Bde.DBTables.TBDEDataSet.DataEvent

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TBDEDataSet

Delphi

procedure DataEvent(Event: TDataEvent; Info: NativeInt); override;

C++

virtual void __fastcall DataEvent(Data::Db::TDataEvent Event, System::NativeInt Info);

Description

Notifies the attached dataset about a specific event.

Bde.DBTables.TBDEDataSet.DataEvent inherits from Data.DB.TDataSet.DataEvent. All content below this line refers to Data.DB.TDataSet.DataEvent.

Notifies the attached dataset about a specific event.

DataEvent notifies the attached dataset about a specific event. The Event parameter is a TDataEvent value that represents the event to notify about.

The Info parameter depends on the Event parameter and provides information specific to every event. For example, if Event is deFieldChange, then Info is a TField index.

See Also