RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TParameters.ParseSQL Method

Parses an SQL statement for parameters and TParameter objects.

Pascal
function ParseSQL(SQL: WideString; DoCreate: Boolean): WideString;
C++
__fastcall BSTR ParseSQL(BSTR SQL, Boolean DoCreate);

Call ParseSQL to parse an SQL statement for parameters. For each parameter found in the SQL statement, a TParameter object is added to the calling TParameters object using the name of the parameter in the SQL statement. 

SQL contains the SQL statement to parse. 

DoCreate indicates whether to clear all existing parameter definitions before parsing the SQL statement. 

ParseSQL returns a parsed version of the SQL statement specified in the SQL parameter.

ADOQuery1.Parameters.ParseSQL(ADOQuery1.Text, True);

 

ADOQuery1->Parameters->ParseSQL(ADOQuery1->Text, true);

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!