How to use the existing OLEDB connection Manager from scripttask Task(VB). i need to execute a SQL statement from "Script Task" Task.

Edit

Attempted the following code but couldn't get the connection with my OLEDB Connectionmanager

Dim MyCM As ConnectionManager = Dts.Connections("MyConnection1") 
Dim CS As String = Dts.Connections(MyCM).ConnectionString 
sqlConn = New SqlConnection(CS) 
link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I would refer you to this most excellent blog post by Todd McDermid, Using Connections Properly in an SSIS Script Task

link|improve this answer
Awesome!. Dim MyCM As ConnectionManager = Dts.Connections("MyConnection1") Dim CS As String = Dts.Connections(MyCM).ConnectionString sqlConn = New SqlConnection(CS) I tried like this, is there anything wrong. i couldnt get the connection with my OLEDB Connectionmanager. – Santhosh_ms3 Feb 1 at 18:32
Any Clue ? anything wrong with my code ? – Santhosh_ms3 Feb 1 at 19:54
What is the error you are receiving. Couldn't connect does not tell me anything – billinkc Feb 1 at 21:50
I managed it in someother way. Anyway thanks for sharing article. – Santhosh_ms3 Feb 2 at 9:22
feedback

First you must add the connection manager to the script box:

Adding a connection manager to a script component

Then, you access it in the code through the Connections object, e.g:

this.Connections.EBIC;

Check the link in the answer from user bilinkc for more detailed information

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.