There must be a way of doing this but I don't know how. I want to run a VBScript but I need to retrieve the current packages Connections (Connection1 and Connection2). Maybe I'm off but something like:
How do I get a reference to the current connections I'm using in my package?
Thanks,
Rewdee
Code:
Dim Conn1, Conn2
...
Set Conn1=CreateObject("ADODB.Connection")
Set Conn2=CreateObject("ADODB.Connection")
'''I know there's no Me variable but if there was'''
Conn1 = Me.Connection1
Conn2 = Me.Connection2
How do I get a reference to the current connections I'm using in my package?
Thanks,
Rewdee