IDTSDesigntimeComponent90.SetOutputColumnDataTypeProperties Method
IDTSOutputColumn90 オブジェクトのデータ型プロパティを設定します。
名前空間: Microsoft.SqlServer.Dts.Pipeline.Wrapper
アセンブリ: Microsoft.SqlServer.DTSPipelineWrap (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
IDTSOutput90 オブジェクトの ID です。
- lOutputColumnID
IDTSOutputColumn90 オブジェクトの ID です。
- eDataType
列の DataType です。
- lLength
列の長さです。
- lPrecision
数値データ型の列の総桁数です。
- lScale
数値データ型の列の有効桁数です。
- lCodePage
列のコード ページです。
解説
このメソッドのパラメータは、IDTSOutputColumn90 オブジェクトの個別の読み取り専用プロパティで、このメソッドを使用して設定する必要があります。これらのプロパティの値は相互に依存するため、このメソッドが必要です。このメソッドはこれらのプロパティを同時に更新するためのメカニズムを提供し、コンポーネントとデータ フロー タスクが依存関係を適用できるようにします。eDataType パラメータは、他のパラメータ値の要件を指定します。
次の表に、出力列のデータ型プロパティを設定する際に順守する必要があるルールの一覧を示します。
DataType |
Length |
Scale |
Precision |
CodePage |
DT_DECIMAL |
0 |
0 より大で 28 以下です。 |
0 |
0 |
DT_CY |
0 |
0 |
0 |
0 |
DT_NUMERIC |
0 |
0 より大で 28 以下、また有効桁数未満です。 |
1 以上で 38 以下です。 |
0 |
DT_BYTES |
0 より大です。 |
0 |
0 |
0 |
DT_STR |
0 より大で 8000 未満です。 |
0 |
0 |
0 以外で有効なコード ページです。 |
DT_TEXT |
0 より大で 8000 未満です。 |
0 |
0 |
0 以外で有効なコード ページです。 |
DT_WSTR |
0 より大で 4000 未満です。 |
0 |
0 |
0 |
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
IDTSDesigntimeComponent90 Interface
IDTSDesigntimeComponent90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace