Reputation: 266900
In C#, I am calling a SSIS package. I have to pass it 3 parameters, how do I do that?
Upvotes: 2
Views: 2846
Reputation: 1850
package.Variables["YOUR_VAR_1"].Value = "This is test";
package.Variables["YOUR_VAR_2"].Value = 100;
Should do the trick.
Upvotes: 4