IDTSVirtualInput100 인터페이스
Represents the columns available to a component from the upstream component.
네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리: Microsoft.SqlServer.DTSPipelineWrap(Microsoft.SqlServer.DTSPipelineWrap.dll)
구문
‘선언
<GuidAttribute("86FC9629-769A-479E-82ED-C6FD75C2FC8E")> _
Public Interface IDTSVirtualInput100 _
Inherits IDTSObject100
‘사용 방법
Dim instance As IDTSVirtualInput100
[GuidAttribute("86FC9629-769A-479E-82ED-C6FD75C2FC8E")]
public interface IDTSVirtualInput100 : IDTSObject100
[GuidAttribute(L"86FC9629-769A-479E-82ED-C6FD75C2FC8E")]
public interface class IDTSVirtualInput100 : IDTSObject100
[<GuidAttribute("86FC9629-769A-479E-82ED-C6FD75C2FC8E")>]
type IDTSVirtualInput100 =
interface
interface IDTSObject100
end
public interface IDTSVirtualInput100 extends IDTSObject100
IDTSVirtualInput100 유형에서 다음 멤버를 표시합니다.
속성
이름 | 설명 | |
---|---|---|
Description | Gets or sets the description of an IDTSObject100. (IDTSObject100에서 상속됨) | |
Description | Gets or sets the description of an IDTSVirtualInput100 object. | |
ID | Gets or sets the ID of an IDTSObject100object. (IDTSObject100에서 상속됨) | |
ID | Gets or sets the ID of a virtual input object. | |
IdentificationString | Gets a string that uniquely identifies an IDTSObject100. (IDTSObject100에서 상속됨) | |
IdentificationString | Gets a string that uniquely identifies the IDTSVirtualInput100. | |
IsSorted | Gets a value that indicates whether the virtual input columns in the IDTSVirtualInput100 are sorted. | |
Name | Gets or sets the name of an IDTSObject100 object. (IDTSObject100에서 상속됨) | |
Name | Gets or sets the name of an IDTSVirtualInput100. | |
ObjectType | Gets the ObjectType property of an IDTSObject100. (IDTSObject100에서 상속됨) | |
ObjectType | Gets the DTSObjectType of an IDTSVirtualInput100. | |
SourceLocale | Gets the locale ID (LCID) of the source of the IDTSVirtualInput100. | |
VirtualInputColumnCollection | Gets the IDTSVirtualInputColumnCollection100 of an IDTSVirtualInput100. |
맨 위로 이동
주의
The IDTSVirtualInput100 is retrieved by calling the GetVirtualInput method of an IDTSInput100 object. The VirtualInputColumnCollection property contains the columns that are available from the upstream components in the graph.
When programmatically building a data flow task, the virtual columns are selected for a component by calling the SetUsageType method of the CManagedComponentWrapperClass.
Developers writing custom data flow components use the virtual input to discover the available upstream columns, and, depending on the component, to add columns to the input based on the columns in the virtual collection.
Because the virtual input is a reflection of upstream columns, modifications to the virtual input or the columns in the virtual input collection do not have any impact on the IDTSOutput100 itself.
예
The following code example shows how to use the virtual input to select the columns used by a component when programmatically building the data flow task.
public void SelectColumns(IDTSComponentMetaData100 md)
{
// Create the design time instance of the component.
CManagedComponentWrapper wrp = md.Instantiate();
// Walk the input collection.
foreach (IDTSInput100 input in md.InputCollection)
{
// Get the virtual input columns.
IDTSVirtualInput100 vInput = input.GetVirtualInput();
// For each virtual column, set its usagetype to READONLY.
foreach (IDTSVirtualInputColumn100 vCol in vInput.VirtualInputColumnCollection)
wrp.SetUsageType(input.ID, vInput, vCol.LineageID, DTSUsageType.UT_READONLY);
}
}
Public Sub SelectColumns(ByVal md As IDTSComponentMetaData100)
Dim wrp As CManagedComponentWrapper = md.Instantiate
For Each input As IDTSInput100 In md.InputCollection
Dim vInput As IDTSVirtualInput100 = input.GetVirtualInput
For Each vCol As IDTSVirtualInputColumn100 In vInput.VirtualInputColumnCollection
wrp.SetUsageType(input.ID, vInput, vCol.LineageID, DTSUsageType.UT_READONLY)
Next
Next
End Sub
The following code example shows a custom data flow component that selects all of the DT_STR columns from the virtual input when the input is connected to a path.
public override void OnInputPathAttached(int inputID)
{
IDTSInput100 input = ComponentMetaData.InputCollection.GetObjectByID(inputID);
IDTSVirtualInput100 vInput = input.GetVirtualInput();
foreach (IDTSVirtualInputColumn100 vCol in vInput.VirtualInputColumnCollection)
{
if (vCol.DataType == DataType.DT_STR)
{
this.SetUsageType(inputID, vInput, vCol.LineageID, DTSUsageType.UT_READONLY);
}
}
}
Public Overrides Sub OnInputPathAttached(ByVal inputID As Integer)
Dim input As IDTSInput100 = ComponentMetaData.InputCollection.GetObjectByID(inputID)
Dim vInput As IDTSVirtualInput100 = input.GetVirtualInput
For Each vCol As IDTSVirtualInputColumn100 In vInput.VirtualInputColumnCollection
If vCol.DataType = DataType.DT_STR Then
Me.SetUsageType(inputID, vInput, vCol.LineageID, DTSUsageType.UT_READONLY)
End If
Next
End Sub