IDTSDesigntimeComponent100.MapOutputColumn Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Establishes a relationship between an output column and a corresponding external metadata column.
public:
Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSExternalMetadataColumn100 ^ MapOutputColumn(int lOutputID, int lOutputColumnID, int lExternalMetadataColumnID, bool bMatch);
[System.Runtime.InteropServices.DispId(34)]
public Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSExternalMetadataColumn100 MapOutputColumn (int lOutputID, int lOutputColumnID, int lExternalMetadataColumnID, bool bMatch);
[<System.Runtime.InteropServices.DispId(34)>]
abstract member MapOutputColumn : int * int * int * bool -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSExternalMetadataColumn100
Public Function MapOutputColumn (lOutputID As Integer, lOutputColumnID As Integer, lExternalMetadataColumnID As Integer, bMatch As Boolean) As IDTSExternalMetadataColumn100
Parameters
- lOutputID
- Int32
The ID of the IDTSOutput100 object.
- lOutputColumnID
- Int32
The ID of the IDTSOutputColumn100 object.
- lExternalMetadataColumnID
- Int32
The ID of the IDTSExternalMetadataColumn100 object that is linked to the output column.
- bMatch
- Boolean
Indicates whether the output column and external metadata columns match.
Returns
The IDTSExternalMetadataColumn100 that is mapped to the output column.
- Attributes
Remarks
This method is called to map an output column to a column in the ExternalMetadataColumnCollection of the output. When you are developing a custom data flow component, you override this method, to ensure that the external columns and the output column match, and to indicate that you want to allow the mapping to occur. For more information about working with external metadata columns, see Implementing External Metadata.