Hi,
In C#, I am calling a SSIS package. I have to pass it 3 parameters, how do I do that?
Hi,
In C#, I am calling a SSIS package. I have to pass it 3 parameters, how do I do that?
package.Variables["YOUR_VAR_1"].Value = "This is test";
package.Variables["YOUR_VAR_2"].Value = 100;
Should do the trick.