Структура DTP_VARIANT
Specifies the data type of the column. This is a value from the DataType enumeration that determines the type of DTP_VARIANT structure stored in each cell of this column.
Пространство имен: Microsoft.SqlServer.Dts.Runtime.Wrapper
Сборка: Microsoft.SqlServer.DTSRuntimeWrap (в Microsoft.SqlServer.DTSRuntimeWrap.dll)
Синтаксис
'Декларация
Public Structure DTP_VARIANT
'Применение
Dim instance As DTP_VARIANT
public struct DTP_VARIANT
public value class DTP_VARIANT
[<SealedAttribute>]
type DTP_VARIANT = struct end
JScript поддерживает использование структур, но не объявление новых.
Тип DTP_VARIANT обеспечивает доступ к следующим элементам.
Методы
Имя | Описание | |
---|---|---|
Equals | (Производный от ValueType.) | |
GetHashCode | (Производный от ValueType.) | |
GetType | (Производный от Object.) | |
ToString | (Производный от ValueType.) |
В начало
Поля
Имя | Описание | |
---|---|---|
dwLength | Represents an unsigned integer that contains the length of the data in the union. | |
u | Contains the data union. | |
vt | Represents an enumeration of the DataType. |
В начало
Замечания
This structure is used by the pipeline to determine column information. When a component calls the GetData method, the last parameter is the returned column data, in a DTP_VARIANT structure. The data union is the union of the different types supported by the pipeline, such as Long, String, wstring, decimal, numeric, and so on, and it contains the column data. The DataType is the datatype of the column data, and it tells which part of the union to use. The length specifies the length of the data in the union.
Безопасность многопоточности
Любые открытые статический (Shared в Visual Basic) элементы этого типа потокобезопасны. Потокобезопасность с элементами экземпляров не гарантируется.