Hi guys,
I am designing an SSIS package that will query an SQL table and then passing values from the SQL Query result-set to a Web API.
I actually plan to use Execute SQL get the SQL query result and and save it as an object variable and then use the Foreach ADO Enumerator to loop through each of the rows in the result set and then pass the values as a parameter to the Web API.
My major challenge is how to write a code that will handle the passing of the values to the API as I am not very good in writing codes.
Thanks
me