I have a generic object that is passed into a script task from a SQL Process. The object will essentially be a data table but in order to get the full result set from the sql process i have to store it in a generic object.
So If i have:
Object A = Dts.Variables[0];
How then would I go about extracting and then manipulating its values.
Baseically what i want to do is:
Object A = Dts.Variables[0];
strin x = A.Column[0].value.tostring();
But this obviously won't work.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…