PipelineComponent.ConvertBufferDataTypeToFitManaged(DataType, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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.