OnExecutionStatusChanged 方法
Called by a task or container when its execution status changes.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS(在 Microsoft.SqlServer.ManagedDTS.dll 中)
语法
声明
Sub OnExecutionStatusChanged ( _
exec As Executable, _
newStatus As DTSExecStatus, _
ByRef fireAgain As Boolean _
)
用法
Dim instance As IDTSEvents
Dim exec As Executable
Dim newStatus As DTSExecStatus
Dim fireAgain As Boolean
instance.OnExecutionStatusChanged(exec, _
newStatus, fireAgain)
void OnExecutionStatusChanged(
Executable exec,
DTSExecStatus newStatus,
ref bool fireAgain
)
void OnExecutionStatusChanged(
Executable^ exec,
DTSExecStatus newStatus,
bool% fireAgain
)
abstract OnExecutionStatusChanged :
exec:Executable *
newStatus:DTSExecStatus *
fireAgain:bool byref -> unit
function OnExecutionStatusChanged(
exec : Executable,
newStatus : DTSExecStatus,
fireAgain : boolean
)
参数
- exec
类型:Microsoft.SqlServer.Dts.Runtime. . :: . .Executable
The task raising the event.
- newStatus
类型:Microsoft.SqlServer.Dts.Runtime. . :: . .DTSExecStatus
The current status of the executable.
- fireAgain
类型:System. . :: . .Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
注释
The following table shows the values that newStatus will contain:
newStatus |
Description |
---|---|
The task experienced an internal error and terminated execution abnormally. |
|
Task has completed executing with a success or failed result. |
|
Task is currently running. |
|
Task is idle. Default value. |
|
Task is currently suspended because of a breakpoint hit. |
|
Task is currently validating. |