PipelineComponent.ConvertBufferDataTypeToFitManaged(DataType, Boolean) Method

Definition

Important

This API is not CLS-compliant.

Gets the appropriate Integration Services DataType from managed code.

protected:
 static Microsoft::SqlServer::Dts::Runtime::Wrapper::DataType ConvertBufferDataTypeToFitManaged(Microsoft::SqlServer::Dts::Runtime::Wrapper::DataType dt, bool % IsLong);
[System.CLSCompliant(false)]
protected static Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType ConvertBufferDataTypeToFitManaged (Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType dt, ref bool IsLong);
[<System.CLSCompliant(false)>]
static member ConvertBufferDataTypeToFitManaged : Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType * bool -> Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType
Protected Shared Function ConvertBufferDataTypeToFitManaged (dt As DataType, ByRef IsLong As Boolean) As DataType

Parameters

dt
DataType

The Integration ServicesDataType

IsLong
Boolean

Indicates if the data type is a long.

Returns

An Integration Services DataType that corresponds to a managed type.

Attributes

Remarks

This method is used to retrieve the Integration Services data type that is appropriate for managed code.

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