I\'m trying to set multiple variables to the result of an SQL Query that returns a single row with multiple columns. The SQL statement is in the format of:
SELEC
I found a solution to this by using mapping the result sets as a zero-based ordinal set. E.g. under 'Result Set' in the task properties:
result name | variable name ------------------------------- 0 | a 1 | b 3 | c 4 | d
This method allows me to keep my SQL statement unaltered also.