Metodo IDTSServerExecution100.SetParameterValue
Questa API supporta l'infrastruttura SQL Server 2012 e non può essere utilizzata direttamente dal codice.
Sets the parameter with the specified value.
Spazio dei nomi Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Sintassi
'Dichiarazione
Sub SetParameterValue ( _
parameterType As DTSServerParameterType, _
bstrParameterName As String, _
bstrParameterValue As String _
)
'Utilizzo
Dim instance As IDTSServerExecution100
Dim parameterType As DTSServerParameterType
Dim bstrParameterName As String
Dim bstrParameterValue As String
instance.SetParameterValue(parameterType, _
bstrParameterName, bstrParameterValue)
void SetParameterValue(
DTSServerParameterType parameterType,
string bstrParameterName,
string bstrParameterValue
)
void SetParameterValue(
DTSServerParameterType parameterType,
[InAttribute] String^ bstrParameterName,
[InAttribute] String^ bstrParameterValue
)
abstract SetParameterValue :
parameterType:DTSServerParameterType *
bstrParameterName:string *
bstrParameterValue:string -> unit
function SetParameterValue(
parameterType : DTSServerParameterType,
bstrParameterName : String,
bstrParameterValue : String
)
Parametri
- parameterType
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper.DTSServerParameterType
The type of the parameter.
- bstrParameterName
Tipo: System.String
The name of the parameter to set.
- bstrParameterValue
Tipo: System.String
The value to set on the parameter.
Osservazioni
For more information, see SsisServerExecution.