Parameters.Insert Method (Int32, String, TypeCode)

 

Applies To: SQL Server 2016 Preview

Inserts a parameter object to the parameters collection with the specified index, name, and data type. Only project parameters can be inserted to the parameters collection.

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

Syntax

public abstract void Insert(
    int index,
    string parameterName,
    TypeCode dataType
)
public:
virtual void Insert(
    int index,
    String^ parameterName,
    TypeCode dataType
) abstract
abstract Insert : 
        index:int *
        parameterName:string *
        dataType:TypeCode -> unit
Public MustOverride Sub Insert (
    index As Integer,
    parameterName As String,
    dataType As TypeCode
)

Parameters

  • index
    Type: System.Int32

    The location within the collection to insert to.

See Also

Parameters Class
Microsoft.SqlServer.Dts.Runtime Namespace

Return to top