ColumnDataType Enumeration |
Column data type.
Namespace: OpenDiscoverSDK.Interfaces.ContentAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.6.0 (2025.4.6)
Syntaxpublic enum ColumnDataType
Members| Member name | Value | Description |
|---|
| Unknown | 0 |
Unknown/unsupported valued column.
|
| Boolean | 1 |
Boolean valued column.
|
| Byte | 2 |
Byte valued column.
|
| Int16 | 3 |
Int16 valued column.
|
| UInt16 | 4 |
UInt16 valued column.
|
| Int32 | 5 |
Int32 valued column.
|
| UInt32 | 6 |
UInt32 valued column.
|
| Int64 | 7 |
Int64 valued column.
|
| UInt64 | 8 |
UInt64 valued column.
|
| Float | 9 |
Float valued column.
|
| Double | 10 |
Double valued column.
|
| Decimal | 11 |
Decimal valued column.
|
| BigInteger | 12 |
BigInteger valued column.
|
| Guid | 13 |
Guid valued column.
|
| DateTime | 14 |
DateTime valued column.
|
| DateTimeOffset | 15 |
DateTime with offset valued column.
|
| Text | 16 |
Text (string) valued column.
|
| Binary | 17 |
Binary blob column.
|
| Attachment | 18 |
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