Bde.DBTables.TBDEDataSet.Handle

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TBDEDataSet

Delphi

property Handle: HDBICur read FHandle;

C++

__property Bde::hDBICur Handle = {read=FHandle};

Description

Specifies the Borland Database Engine (BDE) cursor handle for the dataset.

Use Handle only to bypass TDataSet methods and call directly into the BDE. Many BDE function calls require a cursor handle parameter. Handle is assigned an initial value when a dataset is opened. If used with a BDE call that changes the current record position, call Resync immediately after returning from the BDE call.

Note: Do not use this property unless an application requires BDE functionality not available through built-in components.

See Also