API:Bde.DBTables.TBDEDataSet.DataEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TBDEDataSet

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