Retrieves the ODBC statement handle from the cursor data structure. The statement handle is used for native ODBC function calls.
DBAPI.bdh
Hstmt(in cCursor: cursor): number;
ODBC statement handle
|
var c1: cursor; dcltrans transaction THstmt begin ... DB_Execute(c1); SQLFreeStmt(Hstmt(c1), ...); ... end THstmt;