IDTSOutput90 Interface
Contains the collection of IDTSOutputColumn90 columns available to downstream components in a graph.
Spazio dei nomi: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly : Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)
Sintassi
'Dichiarazione
<GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")> _
<TypeLibTypeAttribute(4160)> _
Public Interface IDTSOutput90
Inherits IDTSObject90
[GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")]
[TypeLibTypeAttribute(4160)]
public interface IDTSOutput90 : IDTSObject90
[GuidAttribute(L"5A3F4E89-4A68-4D16-A893-366A39AF9AE6")]
[TypeLibTypeAttribute(4160)]
public interface class IDTSOutput90 : IDTSObject90
/** @attribute GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6") */
/** @attribute TypeLibTypeAttribute(4160) */
public interface IDTSOutput90 extends IDTSObject90
GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")
TypeLibTypeAttribute(4160)
public interface IDTSOutput90 extends IDTSObject90
Osservazioni
The IDTSOutput90 object contains the collection of IDTSOutputColumn90 columns exposed by a data flow component. The output is connected to the IDTSInput90 of a downstream component to establish the flow of data between two components.
An output can be either synchronous to an IDTSInput90 object, or asynchronous, and is specified by the SynchronousInputID property.
The columns in the output column collection are available to downstream components. Columns are added and removed from the collection at design time.
Esempio
The following code example demonstrates a component that creates an IDTSOutput90 that is synchronous to its input during a call to the ProvideComponentProperties method.
public override void ProvideComponentProperties()
{
IDTSInput90 input = ComponentMetaData.InputCollection.New();
input.Name = "Input";
IDTSOutput90 output = ComponentMetaData.OutputCollection.New();
output.Name = "Output";
output.SynchronousInputID = input.ID;
}
Public Overrides Sub ProvideComponentProperties()
Dim input As IDTSInput90 = ComponentMetaData.InputCollection.New
input.Name = "Input"
Dim output As IDTSOutput90 = ComponentMetaData.OutputCollection.New
output.Name = "Output"
output.SynchronousInputID = input.ID
End Sub
Piattaforme
Piattaforme di sviluppo
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Piattaforme di destinazione
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Vedere anche
Riferimento
IDTSOutput90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace