SetDate メソッド
PipelineBuffer 列に DateTime 値を割り当てます。
名前空間: Microsoft.SqlServer.Dts.Pipeline
アセンブリ: Microsoft.SqlServer.PipelineHost (Microsoft.SqlServer.PipelineHost.dll)
構文
'宣言
Public Sub SetDate ( _
columnIndex As Integer, _
value As DateTime _
)
'使用
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim value As DateTime
instance.SetDate(columnIndex, value)
public void SetDate(
int columnIndex,
DateTime value
)
public:
void SetDate(
int columnIndex,
DateTime value
)
member SetDate :
columnIndex:int *
value:DateTime -> unit
public function SetDate(
columnIndex : int,
value : DateTime
)
パラメーター
- columnIndex
型: System. . :: . .Int32
PipelineBuffer 行の列のインデックス。
- value
型: System. . :: . .DateTime
バッファ列に割り当てられた値。
説明
SetDate メソッドは、columnIndex パラメータで指定されたバッファ列に DateTime 値を割り当てます。
このメソッドは、Integration Services の DT_DBDATE データ型に有効です。
バッファ列の DataType が DT_DBDATE ではない場合、UnsupportedBufferDataTypeException が発生します。
Integration Services のデータ型と、それぞれのデータ型に対して使用する、PipelineBuffer クラスの対応する Get メソッドおよび Set メソッドの一覧については、「データ フロー内のデータ型の処理」を参照してください。