Share via


PipelineComponent.SetOutputColumnDataTypeProperties 方法

定义

重要

此 API 不符合 CLS。

设置 IDTSOutputColumn100 对象的数据类型属性。

public:
 virtual void SetOutputColumnDataTypeProperties(int iOutputID, int iOutputColumnID, Microsoft::SqlServer::Dts::Runtime::Wrapper::DataType eDataType, int iLength, int iPrecision, int iScale, int iCodePage);
[System.CLSCompliant(false)]
public virtual void SetOutputColumnDataTypeProperties (int iOutputID, int iOutputColumnID, Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType eDataType, int iLength, int iPrecision, int iScale, int iCodePage);
[<System.CLSCompliant(false)>]
abstract member SetOutputColumnDataTypeProperties : int * int * Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType * int * int * int * int -> unit
override this.SetOutputColumnDataTypeProperties : int * int * Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType * int * int * int * int -> unit
Public Overridable Sub SetOutputColumnDataTypeProperties (iOutputID As Integer, iOutputColumnID As Integer, eDataType As DataType, iLength As Integer, iPrecision As Integer, iScale As Integer, iCodePage As Integer)

参数

iOutputID
Int32

IDTSOutput100 对象的 ID。

iOutputColumnID
Int32

IDTSOutputColumn100 对象的 ID。

eDataType
DataType

列的 DataType

iLength
Int32

列的长度。

iPrecision
Int32

列中的总位数。

iScale
Int32

列中的精度位数。

iCodePage
Int32

列的代码页。

属性

注解

此方法用于同时设置输出列的数据类型属性。 存在是因为属性依赖于方法中其他属性的值。

适用于