yes, you can use collections in SQL connector calls by selecting ‘repeatable statement’ as the mode in the connector call. The SQL statement will then be executed for each element inside the collection.
Then, as the input parameter, select the datatype for the collection that you want to use.
For example, I have the datatype ‘fruit’ which contains objects with the fields ‘name’ and ‘colour’. The insert statement can look like this:
INSERT INTO Fruit (name, colour) VALUES (:name:, :colour:);
In Simplifier 7.0, configuring the collection data type looks like this:
If you use Simplifier 6.5, you need to add an input parameter called ‘parameterCollection’ and define the collection data type there (you can also find an example for that in this knowledge base article):