Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Initializes a new instance of the DtsConvert class.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub New
'Usage
Dim instance As New DtsConvert()
public DtsConvert()
public:
DtsConvert()
new : unit -> DtsConvert
public function DtsConvert()
Examples
The following code example shows two ways to create the DtsConvert object. The first way, shown in comments, is to simply create the class. The second way is creating it inline, which is the most common way.
//DtsConvert convert = new DtsConvert();
ConnectionManager cm = Microsoft.SqlServer.Dts.Runtime.DtsConvert.ToConnectionManager(ComponentMetaData.RuntimeConnectionCollection[0].ConnectionManager);
' Dim convert As DtsConvert = New DtsConvert()
Dim cm As ConnectionManager = Microsoft.SqlServer.Dts.Runtime.DtsConvert.ToConnectionManager(ComponentMetaData.RuntimeConnectionCollection(0).ConnectionManager)