Share via


ApplicationClass.LoadFromSQLServer2 Method

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.

Namespace:  Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly:  Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)

Syntax

'Declaration
Public Overridable Function LoadFromSQLServer2 ( _
    bstrPackagePath As String, _
    vConnectionObject As Object, _
    bLoadNeutral As Boolean, _
    pEvents As IDTSEvents100 _
) As IDTSPackage100
'Usage
Dim instance As ApplicationClass 
Dim bstrPackagePath As String 
Dim vConnectionObject As Object 
Dim bLoadNeutral As Boolean 
Dim pEvents As IDTSEvents100 
Dim returnValue As IDTSPackage100 

returnValue = instance.LoadFromSQLServer2(bstrPackagePath, _
    vConnectionObject, bLoadNeutral, _
    pEvents)
public virtual IDTSPackage100 LoadFromSQLServer2(
    string bstrPackagePath,
    Object vConnectionObject,
    bool bLoadNeutral,
    IDTSEvents100 pEvents
)
public:
virtual IDTSPackage100^ LoadFromSQLServer2(
    [InAttribute] String^ bstrPackagePath, 
    [InAttribute] Object^ vConnectionObject, 
    [InAttribute] bool bLoadNeutral, 
    [InAttribute] IDTSEvents100^ pEvents
)
abstract LoadFromSQLServer2 : 
        bstrPackagePath:string * 
        vConnectionObject:Object * 
        bLoadNeutral:bool * 
        pEvents:IDTSEvents100 -> IDTSPackage100  
override LoadFromSQLServer2 : 
        bstrPackagePath:string * 
        vConnectionObject:Object * 
        bLoadNeutral:bool * 
        pEvents:IDTSEvents100 -> IDTSPackage100
public function LoadFromSQLServer2(
    bstrPackagePath : String, 
    vConnectionObject : Object, 
    bLoadNeutral : boolean, 
    pEvents : IDTSEvents100
) : IDTSPackage100

Parameters

  • bstrPackagePath
    Type: System.String
    The name and path of the package to load.
  • bLoadNeutral
    Type: System.Boolean
    true to load the package as neutral threaded. false to load the package as apartment threaded.

Return Value

Type: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSPackage100
The package that was loaded.

Implements

IDTSApplication100.LoadFromSQLServer2(String, Object, Boolean, IDTSEvents100)

See Also

Reference

ApplicationClass Class

Microsoft.SqlServer.Dts.Runtime.Wrapper Namespace