Метод DataRecordTypeToBufferType
Gets the Integration Services DataType that corresponds to a managed type.
Этот API-интерфейс несовместим с CLS.
Пространство имен: Microsoft.SqlServer.Dts.Pipeline
Сборка: Microsoft.SqlServer.PipelineHost (в Microsoft.SqlServer.PipelineHost.dll)
Синтаксис
'Декларация
<CLSCompliantAttribute(False)> _
Protected Shared Function DataRecordTypeToBufferType ( _
type As Type _
) As DataType
'Применение
Dim type As Type
Dim returnValue As DataType
returnValue = PipelineComponent.DataRecordTypeToBufferType(type)
[CLSCompliantAttribute(false)]
protected static DataType DataRecordTypeToBufferType(
Type type
)
[CLSCompliantAttribute(false)]
protected:
static DataType DataRecordTypeToBufferType(
Type^ type
)
[<CLSCompliantAttribute(false)>]
static member DataRecordTypeToBufferType :
type:Type -> DataType
protected static function DataRecordTypeToBufferType(
type : Type
) : DataType
Параметры
- type
Тип: System. . :: . .Type
A managed type.
Возвращаемое значение
Тип: Microsoft.SqlServer.Dts.Runtime.Wrapper. . :: . .DataType
The Integration Services DataType that corresponds to the managed type.
Замечания
This method is used to convert a managed data type to an Integration Services data type.
For more information, see Работа с типами данных в потоке данных.
Внимание! |
---|
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. |