Updating Data
See the following to configure the supported update SQL:
Configuring Updates in the Visual Editor
Select the connector inside your flow and specify the following connector properties:
- Connector Configuration: Select a connection you created. See Establishing a Connection for more information.
- Operation: Choose the update operation.
- Query type: By default, the connector executes parameterized queries. Choose the Dynamic query type to override this. See Parameterized Queries for more information.
- SQL query: Enter the SQL statement. See the following examples.
Configuring Updates in XML
You can set the following fields in the connector configuration:
- config-ref: Reference a connection you created. See Establishing a Connection for more information.
-
query: Specify the SQL statement.
- queryType: By default, the connector is configured to execute parameterized queries. Set this field to "Dynamic" to override this. See Parameterized Queries for more information.
UPDATE
Below is an example parameterized update using variables defined within the flow.
SQL
UPDATE projects SET WorkspaceId = #[flowVars.WorkspaceId] FROM projects WHERE Id = #[flowVars.Id]
XML
The following configuration executes a parameterized update.
<cdata-asana:update config-ref="CData_Asana_Configuration" query="UPDATE projects SET WorkspaceId = #[flowVars.WorkspaceId] FROM projects WHERE Id = #[flowVars.Id]" doc:name="CData Asana"/>
INSERT
Below is an example parameterized insert using variables defined within the flow.
SQL
INSERT INTO projects (Id, WorkspaceId) VALUES (#[flowVars.Id], #[flowVars.WorkspaceId])
XML
<cdata-asana:insert config-ref="CData_Asana_Configuration" query="INSERT INTO projects (Id, WorkspaceId) VALUES (#[flowVars.Id], #[flowVars.WorkspaceId])" doc:name="CData Asana"/>
DELETE
Below is an example parameterized delete using variables defined within the flow:
SQL
DELETE FROM projects WHERE Id = #[flowVars.Id]
XML
<cdata-asana:delete config-ref="CData_Asana_Configuration" query="DELETE FROM projects WHERE Id = #[flowVars.Id]"/>