Exec80PackageTask.Execute Method
Runs the task.
Espace de noms: Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
Assembly: Microsoft.SqlServer.Exec80PackageTask (in microsoft.sqlserver.exec80packagetask.dll)
Syntaxe
'Déclaration
Public Overrides Function Execute ( _
connections As Connections, _
variableDispenser As VariableDispenser, _
events As IDTSComponentEvents, _
log As IDTSLogging, _
txn As Object _
) As DTSExecResult
public override DTSExecResult Execute (
Connections connections,
VariableDispenser variableDispenser,
IDTSComponentEvents events,
IDTSLogging log,
Object txn
)
public:
virtual DTSExecResult Execute (
Connections^ connections,
VariableDispenser^ variableDispenser,
IDTSComponentEvents^ events,
IDTSLogging^ log,
Object^ txn
) override
public DTSExecResult Execute (
Connections connections,
VariableDispenser variableDispenser,
IDTSComponentEvents events,
IDTSLogging log,
Object txn
)
public override function Execute (
connections : Connections,
variableDispenser : VariableDispenser,
events : IDTSComponentEvents,
log : IDTSLogging,
txn : Object
) : DTSExecResult
Paramètres
- connections
A Connections collection for the task.
- variableDispenser
A Variables collection for the task.
- events
A reference to an object that implements the IDTSComponentEvents interface to raise events.
- log
A reference to an object that implements IDTSLogging.
- txn
The transaction object that the task is part of, depending on the value found in the TransactionOption property. This value can be set to a null reference (Nothing in Visual Basic).
Valeur de retour
A DTSExecResult indicating the outcome of the execution.
Notes
The Execute method is inherited by task hosts and other objects from the Executable abstract class, through the DtsContainer class, and allows the inheriting objects to be run by the runtime engine. The Execute method inherited by the individual objects is not commonly used in code, and it is recommended that you call the Execute method if you need to run any of the tasks or containers in the package. However, the Execute method is available on individual objects should you find a unique circumstance where it is needed.
The main use of the Execute method is for it to be inherited and overridden when you create a custom task. For more information about how to override the Execute method, see Implementing the Execute Method in Custom Integration Services Tasks.
The Execute method calls the Validate method implicitly before the package runs. All tasks in the package are reviewed for appropriate settings during validation, and all objects in the package are reviewed, including the package, containers, and other components in the package.
If there are no problems encountered in the validation phase that would cause the package to fail, the package object proceeds to call the Execute method for each task and object in the package.
Pass null for the transaction parameter when the TransactionOption property is false. If the TransactionOption property is true, you can pass null in the transaction parameter to indicate that the container supports transactions but does not participate.
Exemple
The following code example shows how to run a package containing a BulkInsertTask after some of the task properties are set. The Bulk Insert task is an example for this code sample; any task can be created in its place.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
using Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask;
namespace Microsoft.SqlServer.SSIS.Samples
{
class Program
{
static void Main(string[] args)
{
// Note that this code shows how to set properties,
// and that the testFile is pointing to a sample that has
// not been stored to the StorageFile location.
String testFile = @"C:\Program Files\Microsoft SQL Server\90\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx";
String testPackageName = "DTSPackage1";
String packageID = "{AAD06953-9847-4ED4-A3B5-FA6092C56E20}";
String packageVersionGUID = "{3A312EFC-7477-4F3E-8633-E1DDA5C6CB9A}";
Package p = new Package();
Executable exec = p.Executables.Add("STOCK:Exec80PackageTask");
TaskHost th = exec as TaskHost;
// You can cast to the Exec80PackageTask here.
// Exec80PackageTask execPT = th.InnerObject as Exec80PackageTask;
// Set some properties on the Exec80PackageTask.
th.Properties["Location"].SetValue(th, Exec80PackageTask.Locations.StorageFile);
th.Properties["Filename"].SetValue(th, testFile);
th.Properties["PackageName"].SetValue(th, testPackageName);
th.Properties["PackageID"].SetValue(th, packageID);
th.Properties["PackageVersionGUID"].SetValue(th, packageVersionGUID);
// Run the package and the task.
DTSExecResult status = p.Execute();
// Review the result.
if (status == DTSExecResult.Success)
Console.WriteLine("ran successfully");
else
Console.WriteLine("Task failed");
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Imports Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
Namespace Microsoft.SqlServer.SSIS.Samples
Class Program
Shared Sub Main(ByVal args() As String)
' Note that this code shows how to set properties,
' and that the testFile is pointing to a sample that has
' not been stored to the StorageFile location.
Dim testFile As String = "C:\Program Files\Microsoft SQL Server\90\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx"
Dim testPackageName As String = "DTSPackage1"
Dim packageID As String = "{AAD06953-9847-4ED4-A3B5-FA6092C56E20}"
Dim packageVersionGUID As String = "{3A312EFC-7477-4F3E-8633-E1DDA5C6CB9A}"
Dim p As Package = New Package()
Dim exec As Executable = p.Executables.Add("STOCK:Exec80PackageTask")
Dim th As TaskHost = exec as TaskHost
' You can cast to the Exec80PackageTask here.
' Dim execPT As Exec80PackageTask = th.InnerObject as Exec80PackageTask
' Set some properties on the Exec80PackageTask.
th.Properties("Location").SetValue(th, Exec80PackageTask.Locations.StorageFile)
th.Properties("Filename").SetValue(th, testFile)
th.Properties("PackageName").SetValue(th, testPackageName)
th.Properties("PackageID").SetValue(th, packageID)
th.Properties("PackageVersionGUID").SetValue(th, packageVersionGUID)
' Run the package and the task.
Dim status As DTSExecResult = p.Execute()
' Review the result.
If status = DTSExecResult.Success Then
Console.WriteLine("ran successfully")
Else
Console.WriteLine("Task failed")
End If
End Sub
End Class
End Namespace
Sécurité des threads
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
Exec80PackageTask Class
Exec80PackageTask Members
Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask Namespace