IDTSEvents100.OnExecutionStatusChanged 方法
此 API 支援 SQL Server 2012 基礎結構,但無法直接從您的程式碼使用。
Called by a task or container when its execution status changes.
命名空間: Microsoft.SqlServer.Dts.Runtime.Wrapper
組件: Microsoft.SqlServer.DTSRuntimeWrap (在 Microsoft.SqlServer.DTSRuntimeWrap.dll 中)
語法
'宣告
Sub OnExecutionStatusChanged ( _
pExec As IDTSExecutable100, _
newStatus As DTSExecStatus, _
<OutAttribute> ByRef pbFireAgain As Boolean _
)
'用途
Dim instance As IDTSEvents100
Dim pExec As IDTSExecutable100
Dim newStatus As DTSExecStatus
Dim pbFireAgain As Boolean
instance.OnExecutionStatusChanged(pExec, _
newStatus, pbFireAgain)
void OnExecutionStatusChanged(
IDTSExecutable100 pExec,
DTSExecStatus newStatus,
out bool pbFireAgain
)
void OnExecutionStatusChanged(
[InAttribute] IDTSExecutable100^ pExec,
[InAttribute] DTSExecStatus newStatus,
[InAttribute] [OutAttribute] bool% pbFireAgain
)
abstract OnExecutionStatusChanged :
pExec:IDTSExecutable100 *
newStatus:DTSExecStatus *
pbFireAgain:bool byref -> unit
function OnExecutionStatusChanged(
pExec : IDTSExecutable100,
newStatus : DTSExecStatus,
pbFireAgain : boolean
)
參數
- pExec
型別:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100
The task raising the event.
- newStatus
型別:Microsoft.SqlServer.Dts.Runtime.Wrapper.DTSExecStatus
The current status of the executable.
- pbFireAgain
型別:System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
備註
For more information, see IDTSEvents.