SendMailTask.Execute 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
메일 보내기 태스크를 실행합니다.
public:
override Microsoft::SqlServer::Dts::Runtime::DTSExecResult Execute(Microsoft::SqlServer::Dts::Runtime::Connections ^ connections, Microsoft::SqlServer::Dts::Runtime::VariableDispenser ^ variableDispenser, Microsoft::SqlServer::Dts::Runtime::IDTSComponentEvents ^ events, Microsoft::SqlServer::Dts::Runtime::IDTSLogging ^ log, System::Object ^ transaction);
public override Microsoft.SqlServer.Dts.Runtime.DTSExecResult Execute (Microsoft.SqlServer.Dts.Runtime.Connections connections, Microsoft.SqlServer.Dts.Runtime.VariableDispenser variableDispenser, Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents events, Microsoft.SqlServer.Dts.Runtime.IDTSLogging log, object transaction);
override this.Execute : Microsoft.SqlServer.Dts.Runtime.Connections * Microsoft.SqlServer.Dts.Runtime.VariableDispenser * Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents * Microsoft.SqlServer.Dts.Runtime.IDTSLogging * obj -> Microsoft.SqlServer.Dts.Runtime.DTSExecResult
Public Overrides Function Execute (connections As Connections, variableDispenser As VariableDispenser, events As IDTSComponentEvents, log As IDTSLogging, transaction As Object) As DTSExecResult
매개 변수
- connections
- Connections
태스크에서 사용하는 연결의 컬렉션입니다.
- variableDispenser
- VariableDispenser
변수를 잠그기 위한 개체입니다.
- events
- IDTSComponentEvents
이벤트를 발생시키는 T:Microsoft.SqlServer.Dts.Runtime.IDTSEvents 인터페이스입니다.
- log
- IDTSLogging
T:Microsoft.SqlServer.Dts.Runtime.IDTSLogging 인터페이스입니다.
- transaction
- Object
컨테이너가 속한 트랜잭션입니다. SSIS 런타임에서 P:Microsoft.SqlServer.Dts.Runtime.DtsContainer.TransactionOption 속성에 따라 컨테이너에 대한 트랜잭션을 제공합니다. 이 값은 null일 수 있습니다.
반환
DTSExecResult 값 중 하나입니다.
예제
다음 코드 예제에서는 일부 작업 속성이 설정 된 후 포함 된 BulkInsertTask 패키지를 실행 하는 방법을 보여 집니다. 대량 삽입 작업은 이 코드 샘플의 예입니다. 모든 작업을 그 자리에 만들 수 있습니다.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
using Microsoft.SqlServer.Dts.Tasks.BulkInsertTask
namespace Microsoft.SqlServer.SSIS.Samples
{
class Program
{
static void Main(string[] args)
{
Package p = new Package();
p.InteractiveMode = true;
p.OfflineMode = true;
Executable exec1 = pkg.Executables.Add("STOCK:BulkInsertTask");
TaskHost th = exec1 as TaskHost;
// Set the CheckConstraints and DataFileType properties.
th.Properties["CheckConstraints"].SetValue(th, true);
th.Properties["DataFileType"].SetValue(th, DTSBulkInsert_DataFileType.DTSBulkInsert_DataFileType_Native);
// Run the package that contains the task.
pkg.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.BulkInsertTask
Namespace Microsoft.SqlServer.SSIS.Samples
Class Program
Shared Sub Main(ByVal args() As String)
Dim p As Package = New Package()
p.InteractiveMode = True
p.OfflineMode = True
Dim exec1 As Executable = pkg.Executables.Add("STOCK:BulkInsertTask")
Dim th As TaskHost = exec1 as TaskHost
' Set the CheckConstraints and DataFileType properties.
th.Properties("CheckConstraints").SetValue(th, True)
th.Properties("DataFileType").SetValue(th, DTSBulkInsert_DataFileType.DTSBulkInsert_DataFileType_Native)
' Run the package that contains the task.
pkg.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 추상 클래스에서 클래스를 통해 DtsContainer 태스크 호스트 및 기타 개체에 Executable 의해 상속되며 런타임 엔진에서 상속되는 개체를 실행할 수 있습니다. 개별 개체에서 상속하는 메서드는 Execute
코드에서 일반적으로 사용되지 않으며 패키지의 태스크 또는 컨테이너를 실행해야 하는 경우 메서드를 호출 Execute 하는 것이 좋습니다. 그러나 Execute
필요한 고유한 상황을 찾으면 개별 개체에서 메서드를 사용할 수 있습니다.
메서드의 Execute
주요 용도는 사용자 지정 작업을 만들 때 상속되고 재정의되는 것입니다. Execute 메서드를 재정의하는 방법에 대한 자세한 내용은 사용자 지정 작업 코딩을 참조하세요.
메서드는 Execute
패키지를 실행하기 전에 메서드를 암시적으로 호출 Validate
합니다. 패키지의 모든 태스크는 유효성 검사 중에 적절한 설정을 검토하며 패키지의 모든 개체(패키지, 컨테이너 및 패키지의 다른 구성 요소 포함)를 검토합니다.
패키지가 실패하는 유효성 검사 단계에서 문제가 발생하지 않으면 패키지 개체는 패키지의 각 태스크 및 개체에 대한 메서드를 계속 호출 Execute
합니다.
속성이 인 transaction
경우 매개 변수에 대해 TransactionOption 를 전달 null
합니다false
. 속성이 TransactionOption true이면 매개 변수를 transaction
전달 null
하여 컨테이너가 트랜잭션을 지원하지만 참여하지 않음을 나타낼 수 있습니다.