PipelineComponent.BufferTypeToDataRecordType(DataType) Method

Definition

Important

This API is not CLS-compliant.

Returns a managed data type based on an Integration Services data type.

protected:
 static Type ^ BufferTypeToDataRecordType(Microsoft::SqlServer::Dts::Runtime::Wrapper::DataType type);
[System.CLSCompliant(false)]
protected static Type BufferTypeToDataRecordType (Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType type);
[<System.CLSCompliant(false)>]
static member BufferTypeToDataRecordType : Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType -> Type
Protected Shared Function BufferTypeToDataRecordType (type As DataType) As Type

Parameters

type
DataType

A value from the DataType enumeration.

Returns

The managed type that maps to an Integration Services DataType.

Attributes

Remarks

This helper function gets the managed type that corresponds to an Integration Services DataType. It is typically used in concert with the ConvertBufferDataTypeToFitManaged method.

For more information, see Working with Data Types in the Data Flow.

Caution

Developers should use the data type mapping methods of the the PipelineComponent class with caution, and may want to code data type mapping methods of their own that are more suited to the unique needs of their custom components. The existing methods do not consider numeric precision or scale, or other properties closely related to the data type itself. Microsoft may modify or remove these methods, or modify the mappings that they perform, in a future version of Integration Services.

Applies to