Bde.DBTables.TQuery.SQLBinary

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SQLBinary: PAnsiChar read FSQLBinary write FSQLBinary;

C++

__property char * SQLBinary = {read=FSQLBinary, write=FSQLBinary};

Properties

Type Visibility Source Unit Parent
property public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TQuery

Description

Points to the binary data stream that represents an SQL query statement or result set.

Do not access SQLBinary. It is an internal binary data stream used by the query component to communicate directly with the Borland Database Engine. To access or set the SQL statement that this query component executes, use the SQL property. To access or set the parameters used in a parameterized SQL statement, use the Params property.

See Also