Accessing Variables in an SSIS Script Component


/ Published in: C#
Save to your folder(s)

The Script Component uses typed accessor properties of the autogenerated based class, created from the component’s **ReadOnlyVariables** and **ReadWriteVariables** properties.


Copy this code and paste it in your HTML
  1. string myVar;
  2. myVar = this.Variables.MyStringVariable;

URL: http://msdn.microsoft.com/en-us/library/ms136031.aspx

Report this snippet


Comments


You need to login to view comments.