|
AnyDAC
|
Points to the actual text of the SQL query passed to the DBMS CLI.
Text is a read-only property that can be examined to determine the actual contents of SQL statement passed to the DBMS. For parameterized queries, Text contains the SQL statement with parameters replaced by the parameter substitution symbol (? or else) in place of actual parameter values, substituted macro values and processed escape sequences.
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.
To check what AnyDAC sends to the DBMS, consider to use AnyDAC monitoring.
property Text: String;
|
What do you think about this topic? Send feedback!
|