Parameterized Queries
You can use Dataweave to build parameterized queries and dynamic queries. The following sections provide more information on executing and configuring the parameters in the standard visual editor and in the XML directly.
Configuring Parameterized Queries
In the SQL query box, enter the query you want to use with the parameterized values prefixed with the ':' character. For example:
SELECT * FROM Files WHERE Id = :Id
In the Input Parameters box, set the key value pair for the parameter and value via a DataWeave script:
output application/json --- { "Id": payload }
XML Editor
The XML below corresponds to the same parameterized query demonstrated above:
<cdata-onedrive:select config-ref="CData_OneDrive_Configuration" query="SELECT * FROM Files WHERE Id = :Id" doc:name="CData OneDrive"/>
<cdata-onedrive:input-parameters ><![CDATA[#[output application/json --- { "Id": payload }]]]></cdata-onedrive:input-parameters>