Bde.DBTables.TBDEDataSet.StmtHandle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property StmtHandle: HDBIStmt read FStmtHandle write FStmtHandle;

C++

__property Bde::hDBIStmt StmtHandle = {read=FStmtHandle, write=FStmtHandle};

Properties

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

Description

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

Use StmtHandle for direct calls to the BDE that bypass the methods of this dataset. Some BDE API calls require a statement handle as a parameter. For example, TBDEDataSet descendants use StmtHandle when preparing a query or binding parameters.

Typically, applications do not need to access this property. In TBDEDataSet, StmtHandle is protected, and so unavailable to applications. Some descendants make this property public so that you can bypass the dataset methods and make direct calls to the BDE.

See Also