ConvertBufferDataTypeToFitManaged メソッド
マネージ コードから適切な Integration ServicesDataType を取得します。
この API は、CLS に準拠していません。
名前空間: Microsoft.SqlServer.Dts.Pipeline
アセンブリ: Microsoft.SqlServer.PipelineHost (Microsoft.SqlServer.PipelineHost.dll)
構文
'宣言
<CLSCompliantAttribute(False)> _
Protected Shared Function ConvertBufferDataTypeToFitManaged ( _
dt As DataType, _
ByRef IsLong As Boolean _
) As DataType
'使用
Dim dt As DataType
Dim IsLong As Boolean
Dim returnValue As DataType
returnValue = PipelineComponent.ConvertBufferDataTypeToFitManaged(dt, _
IsLong)
[CLSCompliantAttribute(false)]
protected static DataType ConvertBufferDataTypeToFitManaged(
DataType dt,
ref bool IsLong
)
[CLSCompliantAttribute(false)]
protected:
static DataType ConvertBufferDataTypeToFitManaged(
DataType dt,
bool% IsLong
)
[<CLSCompliantAttribute(false)>]
static member ConvertBufferDataTypeToFitManaged :
dt:DataType *
IsLong:bool byref -> DataType
protected static function ConvertBufferDataTypeToFitManaged(
dt : DataType,
IsLong : boolean
) : DataType
パラメーター
- dt
型: Microsoft.SqlServer.Dts.Runtime.Wrapper. . :: . .DataType
Integration ServicesDataType です。
- IsLong
型: System. . :: . .Boolean%
データ型が long かどうかを示します。
戻り値
型: Microsoft.SqlServer.Dts.Runtime.Wrapper. . :: . .DataType
マネージ型に対応する Integration ServicesDataType です。
説明
このメソッドは、マネージ コードに適した Integration Services データ型を取得するために使用されます。
詳細については、「データ フロー内のデータ型の処理」を参照してください。
注意 |
---|
開発者が PipelineComponent クラスのデータ型マッピング メソッドを使用する場合は注意が必要です。開発者は、独自のカスタム コンポーネントの一意なニーズに合わせてデータ型マッピング メソッドを独自に作成してもかまいません。既存のメソッドでは、数値有効桁数や小数点以下桁数が考慮されていません。また、他のプロパティは、データ型そのものに密接に関連します。Integration Services の将来のバージョンでは、これらのメソッドが変更または削除されたり、メソッドが実行するマッピングが変更される可能性があります。 |