PipelineComponent::SetOutputColumnDataTypeProperties Method (Int32, Int32, DataType, Int32, Int32, Int32, Int32)
Sets the data type properties of an IDTSOutputColumn100 object.
This API is not CLS-compliant.
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
public: [CLSCompliantAttribute(false)] virtual void SetOutputColumnDataTypeProperties( int iOutputID, int iOutputColumnID, DataType eDataType, int iLength, int iPrecision, int iScale, int iCodePage )
Parameters
- iOutputID
-
Type:
System::Int32
The ID of the IDTSOutput100 object.
- iOutputColumnID
-
Type:
System::Int32
The ID of the IDTSOutputColumn100 object.
- eDataType
-
Type:
Microsoft.SqlServer.Dts.Runtime.Wrapper::DataType
The DataType of the column.
- iLength
-
Type:
System::Int32
The length of the column.
- iPrecision
-
Type:
System::Int32
The total number of digits in the column.
- iScale
-
Type:
System::Int32
The number of digits of precision in the column.
- iCodePage
-
Type:
System::Int32
The code page of the column.
This method is used to set the data type properties of an output column all at the same time. It exists because the properties depend on the values of the other properties in the method.
Show: