InterFormNG2 can with the input type: From database with custom SQL monitor a table and process all records in this table, that fits a specific selection. You can consider to combine this with the workflow component, Database SQL update in order to ensure, that the records are marked as processed to prevent processing of the same records in the next run.
Custom SQL needs to be enabled in the global System settings. It is divided into two sections:
Here you can enable/disable SQL selects and/or updates for all tenants.
SQL is a powerful tool, but it can cause severe performances issues in InterFormNG2.
The result XML node names are from the names of the columns in the result. If these nodes contains illegal XML node names, an error will happen. Use AS NAME (depending on SQL dialect) in the select to rename the columns. Example: select usern(a)me as username, cit(y) as city from customers - here (a) and (y) represents illegal xml characters.
SQL updates are committed automatically.
All values are treated as strings. This MIGHT be a problem with special columns such as blobs.
ALWAYS use the ? parameter replacement for dynamic data, since this is the safest option. This is especially true for data that are not machine generated. (E.g. a name entered on a website).
The input type has these parameters:
If e.g. it takes 5 seconds to run the workflow and the polling frequency is 10 seconds, then the times to execute the workflow are these:
Run at fixed rate enabled | Run at fixed rate disabled |
---|---|
00:00:00 | 00:00:00 |
00:00:10 | 00:00:15 |
00:00:20 | 00:00:30 |
00:00:30 | 00:00:45 |
Be aware that when fixed rate is checked/enabled, multiple workflow instances may run in parallel, potentially selecting the same rows. Either the polling frequency should be long enough that this cannot happen, or the workflow should be setup in such as way that it can handle overlaps.
After the SQL selection has run the payload will be updated with an XML, that contains the selected data. The XML file has this structure:
<result>
<row>
<columname1>ColumnName1Value</columname1>
<columname2>ColumnName2Value</columname2>
.....
</row>
<row ..... />
</result>
Where columnname1 is the name of the column and columnName1Value is the value from that result row.
Example, for selecting orders in the classicmodels database, the resulting XML is:
<result>
<row>
<orderNumber>10334</orderNumber>
<orderDate>2004-11-19</orderDate>
<requiredDate>2004-11-28</requiredDate>
<status>On Hold</status>
<comments>
The outstanding balance for this customer exceeds their credit limit.
Order will be shipped when a payment is received.
</comments>
<customerNumber>144</customerNumber>
</row>
<row>
<orderNumber>10401</orderNumber>
<orderDate>2005-04-03</orderDate>
<requiredDate>2005-04-14</requiredDate>
<status>On Hold</status>
<comments>Customer credit limit exceeded. Will ship when a payment is received.</comments>
<customerNumber>328</customerNumber>
</row>
</result>
The “Split XML” workflow component can be used to process each row separately (by splitting on /result/row).