I am trying to read a package variable during design-time. I am able to do it during run-time fairly easily:

IDTSVariables variables = null;
pipelineComponent.VariableDispenser.LockForRead("MyVariable");
pipelineComponent.VariableDispenser.GetVariables(out variables);

But during design-time, I don't have a PipelineComponent and I can't find any object that will give me a VariableDispenser.

I've looked at the IDtsVariableService class, but it appears to only provide a helper UI to facilitate the creation of new variables -- I want to read an existing variable.

link|improve this question

feedback

2 Answers

Probably, the following link might help you.

link|improve this answer
feedback
up vote 1 down vote accepted

Turns out I was close, it was the IDtsPipelineEnvironmentService class:

Variables vars = null;

IDtsPipelineEnvironmentService pipelineService = (IDtsPipelineEnvironmentService)serviceProvider_.GetService(typeof(IDtsPipelineEnvironmentService));
pipelineService.PipelineTaskHost.VariableDispenser.LockForRead("VARIABLE_NAME");
pipelineService.PipelineTaskHost.VariableDispenser.GetVariables(ref vars);
VARIABLE = vars[0].Value.ToString();
vars.Unlock();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.