Hello
How to loop through / access values of RecordSet Destination in SSIS Script Task.
Thanks
Hello
How to loop through / access values of RecordSet Destination in SSIS Script Task.
Thanks
Ok got this done as
OleDbDataAdapter oleDA = new OleDbDataAdapter();
DataTable dt = new DataTable();
oleDA.Fill(dt, Dts.Variables["containerHeader"].Value);
once datatable is filled can do looping on it.