Bde.DBTables.TQuery.SQLBinary

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: TQuery

Delphi

property SQLBinary: PAnsiChar read FSQLBinary write FSQLBinary;

C++

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

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