Link to home
Start Free TrialLog in
Avatar of Blowfelt82
Blowfelt82

asked on

Get Column Name/Value pairs from a script component SSIS.

I have an SSIS 'Script Component' which takes a number of input columns from the SSIS pipeline. Within the script component I have the following default code (see code). What I need is a way to iterate through all of the columns in the Input0Buffer and process them individually. This is a task that is going to be used in many different places with a number of different input columns so the solution needs to be generic. Any ideas?

Public Overrides Sub Input0_ProcessInputRow(ByVal Row As Input0Buffer)

End Sub

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of AmmarR
AmmarR
Flag of Bahrain image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Blowfelt82
Blowfelt82

ASKER

Did the job, thanks!