Parameters.Insert メソッド
指定したインデックス、名前、およびデータ型を使用して、パラメーター コレクションにパラメーター オブジェクトを挿入します。 パラメーター コレクションにはプロジェクト パラメーターのみを挿入できます。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)
構文
'宣言
Public MustOverride Sub Insert ( _
index As Integer, _
parameterName As String, _
dataType As TypeCode _
)
'使用
Dim instance As Parameters
Dim index As Integer
Dim parameterName As String
Dim dataType As TypeCode
instance.Insert(index, parameterName, _
dataType)
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 abstract function Insert(
index : int,
parameterName : String,
dataType : TypeCode
)
パラメーター
- index
型: System.Int32
コレクション内の挿入位置です。
- parameterName
型: System.String
パラメーターの名前です。
- dataType
型: System.TypeCode
パラメーターのデータ型です。