GetUInt32 メソッド
バッファ列に格納されている UInt32 値を取得します。
この API は、CLS に準拠していません。
名前空間: Microsoft.SqlServer.Dts.Pipeline
アセンブリ: Microsoft.SqlServer.PipelineHost (Microsoft.SqlServer.PipelineHost.dll)
構文
'宣言
<CLSCompliantAttribute(False)> _
Public Function GetUInt32 ( _
columnIndex As Integer _
) As UInteger
'使用
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim returnValue As UInteger
returnValue = instance.GetUInt32(columnIndex)
[CLSCompliantAttribute(false)]
public uint GetUInt32(
int columnIndex
)
[CLSCompliantAttribute(false)]
public:
unsigned int GetUInt32(
int columnIndex
)
[<CLSCompliantAttribute(false)>]
member GetUInt32 :
columnIndex:int -> uint32
public function GetUInt32(
columnIndex : int
) : uint
パラメーター
- columnIndex
型: System. . :: . .Int32
バッファ行の列のインデックス。
戻り値
型: System. . :: . .UInt32
バッファ列に格納されている UInt32 値。
説明
このメソッドは、Integration Services の DT_UI4 データ型に有効です。
バッファ列 DataType が DT_UI4 ではない場合、PipelineBuffer は UnsupportedBufferDataTypeException を生成します。
列の値が null の場合、PipelineBuffer は ColumnIsNullException を生成します。null かどうかは、最初に IsNull メソッドを呼び出して確認できます。
Integration Services のデータ型と、それぞれのデータ型に対して使用する、PipelineBuffer クラスの対応する Get メソッドおよび Set メソッドの一覧については、「データ フロー内のデータ型の処理」を参照してください。