IDTSDesigntimeComponent90.SetOutputColumnDataTypeProperties Method
Sets the data type properties of an IDTSOutputColumn90 object.
Пространство имен: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Сборка: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)
Синтаксис
'Декларация
<DispIdAttribute(32)> _
Sub SetOutputColumnDataTypeProperties ( _
<InAttribute> lOutputID As Integer, _
<InAttribute> lOutputColumnID As Integer, _
<InAttribute> eDataType As DataType, _
<InAttribute> lLength As Integer, _
<InAttribute> lPrecision As Integer, _
<InAttribute> lScale As Integer, _
<InAttribute> lCodePage As Integer _
)
[DispIdAttribute(32)]
void SetOutputColumnDataTypeProperties (
[InAttribute] int lOutputID,
[InAttribute] int lOutputColumnID,
[InAttribute] DataType eDataType,
[InAttribute] int lLength,
[InAttribute] int lPrecision,
[InAttribute] int lScale,
[InAttribute] int lCodePage
)
[DispIdAttribute(32)]
void SetOutputColumnDataTypeProperties (
[InAttribute] int lOutputID,
[InAttribute] int lOutputColumnID,
[InAttribute] DataType eDataType,
[InAttribute] int lLength,
[InAttribute] int lPrecision,
[InAttribute] int lScale,
[InAttribute] int lCodePage
)
/** @attribute DispIdAttribute(32) */
void SetOutputColumnDataTypeProperties (
/** @attribute InAttribute() */ int lOutputID,
/** @attribute InAttribute() */ int lOutputColumnID,
/** @attribute InAttribute() */ DataType eDataType,
/** @attribute InAttribute() */ int lLength,
/** @attribute InAttribute() */ int lPrecision,
/** @attribute InAttribute() */ int lScale,
/** @attribute InAttribute() */ int lCodePage
)
DispIdAttribute(32)
function SetOutputColumnDataTypeProperties (
lOutputID : int,
lOutputColumnID : int,
eDataType : DataType,
lLength : int,
lPrecision : int,
lScale : int,
lCodePage : int
)
Параметры
- lOutputID
The ID of the IDTSOutput90 object.
- lOutputColumnID
The ID of the IDTSOutputColumn90 object.
- eDataType
The DataType of the column.
- lLength
The length of the column.
- lPrecision
The total number of digits in the column for numeric data types.
- lScale
The number of digits of precision in the column for numeric data types.
- lCodePage
The code page of the column.
Замечания
The parameters of this method are properties of the IDTSOutputColumn90 object that are individually read-only, and must be set by using this method. This method is required because the values of these properties depend on each other. It provides a mechanism for updating these properties at the same time and enables the component and the data flow task to enforce the dependencies. The eDataType parameter dictates the requirements of the other parameter values.
The following table lists the rules that must be adhered to when setting the data type properties of an output column.
DataType |
Length |
Scale |
Precision |
CodePage |
DT_DECIMAL |
0 |
Greater than 0 and less than or equal to 28. |
0 |
0 |
DT_CY |
0 |
0 |
0 |
0 |
DT_NUMERIC |
0 |
Greater than 0 and less than or equal to 28 and less than Precision. |
Greater than or equal to 1 and less than or equal to 38. |
0 |
DT_BYTES |
Greater than 0. |
0 |
0 |
0 |
DT_STR |
Greater than 0 and less than 8000. |
0 |
0 |
Not 0, and a valid code page. |
DT_TEXT |
Greater than 0 and less than 8000. |
0 |
0 |
Not 0, and a valid code page. |
DT_WSTR |
Greater than 0 and less than 4000. |
0 |
0 |
0 |
Синхронизация потоков
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
IDTSDesigntimeComponent90 Interface
IDTSDesigntimeComponent90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace