Horje
ssis sql query in script task Code Example
ssis sql query in script task
ConnectionManager cm;
System.Data.SqlClient.SqlConnection sqlConn;
System.Data.SqlClient.SqlCommand sqlComm;

cm = Dts.Connections["conectionManager1"];

sqlConn = (System.Data.SqlClient.SqlConnection)cm.AcquireConnection(Dts.Transaction);
sqlComm = new System.Data.SqlClient.SqlCommand("your SQL Command", sqlConn);
sqlComm.ExecuteNonQuery();

cm.ReleaseConnection(sqlConn);




Csharp

Related
the underlying connection was closed nuget Code Example the underlying connection was closed nuget Code Example
unity create empty gameobject in code Code Example unity create empty gameobject in code Code Example
smtp check if email sent Code Example smtp check if email sent Code Example
Triangle Calculator Code Example Triangle Calculator Code Example
c# Console Font Code Example c# Console Font Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9