1

SQL Query selection parameters not working with more then 1 parameter

I found out the sql query selection paramters need a real array and not just a list of values. But there is still a problem with this funktion: you can't use more then 1 parameter.

Here an example

Array Set
%sqlparameters Values:  1 2

SQL Query

query: SELECT (? + ?) FROM table LIMIT 1

selection parameters: %sqlparameters

result: null

SQL Query

query: SELECT (? + 2) FROM table LIMIT 1

selection parameters: %sqlparameters

result: 3