Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Loads a package from SQL Server by specifying the server name, user name, and password.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Function LoadFromSqlServer2 ( _
packagePath As String, _
connectionObject As Object, _
events As IDTSEvents _
) As Package
'Usage
Dim instance As Application
Dim packagePath As String
Dim connectionObject As Object
Dim events As IDTSEvents
Dim returnValue As Package
returnValue = instance.LoadFromSqlServer2(packagePath, _
connectionObject, events)
public Package LoadFromSqlServer2(
string packagePath,
Object connectionObject,
IDTSEvents events
)
public:
Package^ LoadFromSqlServer2(
String^ packagePath,
Object^ connectionObject,
IDTSEvents^ events
)
member LoadFromSqlServer2 :
packagePath:string *
connectionObject:Object *
events:IDTSEvents -> Package
public function LoadFromSqlServer2(
packagePath : String,
connectionObject : Object,
events : IDTSEvents
) : Package
Parameters
- packagePath
Type: System.String
The name and path of the package to load.
- connectionObject
Type: System.Object
The connection object.
- events
Type: Microsoft.SqlServer.Dts.Runtime.IDTSEvents
An IDTSEvents interface.
Return Value
Type: Microsoft.SqlServer.Dts.Runtime.Package
The loaded package.