IDTSDesigntimeComponent100.MapInputColumn Method
Establishes a relationship between an input column and a corresponding external metadata column.
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
IDTSExternalMetadataColumn100 MapInputColumn( int lInputID, int lInputColumnID, int lExternalMetadataColumnID )
Parameters
- lInputID
- Type: System.Int32
The ID of the IDTSInput100 object.
- lInputColumnID
- Type: System.Int32
The ID of the IDTSInputColumn100 object.
- lExternalMetadataColumnID
- Type: System.Int32
The ID of the IDTSExternalMetadataColumn100 object.
Return Value
Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSExternalMetadataColumn100The IDTSExternalMetadataColumn100 object that the input column is mapped to.
This method is called to map an input column to a column in the ExternalMetadataColumnCollection of the input. When you are developing a custom data flow component, you override this method to ensure that the input column 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.
Unmapping columns
To unmap a column, specify 0 for the lExternalMetadataColumnID parameter.
- 4/6/2009
- Cim Ryan - MSFT
- 4/6/2009
- Cim Ryan - MSFT