DTSExecResult 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供说明任务执行结果的值。
public enum class DTSExecResult
public enum DTSExecResult
type DTSExecResult =
Public Enum DTSExecResult
- 继承
-
DTSExecResult
字段
Canceled | 3 | 任务已取消。 (值 = 3) |
Completion | 2 | 任务运行直到完成。 (值 = 2) |
Failure | 1 | 任务失败。 (值 = 1) |
Success | 0 | 任务成功运行。 (值 = 0) |
示例
下面的代码示例演示了在包中使用枚举的 DTSExecResult 一种方法。 类 Package 将此枚举用作方法的返回值 Execute ,以确定包的成功或失败状态。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
using Microsoft.SqlServer.Dts.Tasks.ScriptTask;
namespace Package_API
{
class Program
{
static void Main(string[] args)
{
Package p = new Package();
p.InteractiveMode = true;
p.OfflineMode = true;
// Add a Script Task to the package.
TaskHost taskH = (TaskHost)p.Executables.Add("STOCK:ScriptTask");
// Run the package.
p.Execute();
// Review the results of the run.
if (taskH.ExecutionResult == DTSExecResult.Failure || taskH.ExecutionStatus == DTSExecStatus.Abend)
Console.WriteLine("Task failed or abended");
else
Console.WriteLine("Task ran successfully");
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Imports Microsoft.SqlServer.Dts.Tasks.ScriptTask
Namespace Package_API
Class Program
Shared Sub Main(ByVal args() As String)
Dim p As Package = New Package()
p.InteractiveMode = True
p.OfflineMode = True
' Add a Script Task to the package.
Dim taskH As TaskHost = CType(p.Executables.Add("STOCK:ScriptTask"), TaskHost)
' Run the package.
p.Execute()
' Review the results of the run.
If taskH.ExecutionResult = DTSExecResult.Failure Or taskH.ExecutionStatus = DTSExecStatus.Abend Then
Console.WriteLine("Task failed or abended")
Else
Console.WriteLine("Task ran successfully")
End If
End Sub
End Class
End Namespace
示例输出:
任务已成功运行
注解
运行时引擎通过调用方法的 Execute 实现来处理包或容器中包含的任务。 任务在此方法中实现其核心逻辑和功能,并通过发布消息并从枚举返回值 DTSExecResult 来提供执行结果。