Bde.DBTables.TQuery.Text

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Text: string read FText;

C++

__property System::UnicodeString Text = {read=FText};

Properties

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

Description

Points to the actual text of the SQL query passed to the Borland Database Engine (BDE).

Text is a read-only property that can be examined to determine the actual contents of SQL statement passed to the BDE. For parameterized queries, Text contains the SQL statement with parameters replaced by the parameter substitution symbol (?) in place of actual parameter values.

In general there should be no need to examine the Text property. To access or change the SQL statement for the query, use the SQL property. To examine or modify parameters, use the Params property.

See Also