Click or drag to resize

ColumnDataType Enumeration

Column data type.

Namespace: OpenDiscoverSDK.Interfaces.Content
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.6.0 (2025.4.6)
Syntax
C#
public enum ColumnDataType
Members
Member nameValueDescription
Unknown0 Unknown/unsupported valued column.
Boolean1 Boolean valued column.
Byte2 Byte valued column.
Int163 Int16 valued column.
UInt164 UInt16 valued column.
Int325 Int32 valued column.
UInt326 UInt32 valued column.
Int647 Int64 valued column.
UInt648 UInt64 valued column.
Float9 Float valued column.
Double10 Double valued column.
Decimal11 Decimal valued column.
BigInteger12 BigInteger valued column.
Guid13 Guid valued column.
DateTime14 DateTime valued column.
DateTimeOffset15 DateTime with offset valued column.
Text16 Text (string) valued column.
Binary17 Binary blob column.
Attachment18 Binary blob is an attachment. The difference between this enumeration field and the Binary field is it was determined from database that the binary field hold attachment data. This may not be possible with all database formats. For SQL databases (future support), this is a FILESTREAM table column.
See Also