| QdbValueType Enumeration |
Specifies the type of a value.
Namespace:
Quasardb.Query
Assembly:
Quasardb (in Quasardb.dll) Version: 3.15.0.0 (3.15.0.0)
Syntax Public Enumeration QdbValueType
Members
| Member name | Value | Description |
---|
| None | -1 |
A null result />.
|
| Double | 0 |
A result of type double />.
|
| Blob | 1 |
A result of type byte[] />.
|
| Int64 | 2 |
A result of type long />.
|
| Timestamp | 3 |
A result of type DateTime.
|
| Count | 4 |
A result of type long that represents a count.
|
| String | 5 |
A result of type String />.
|
| DoubleArray | 6 |
A result of type Double Array />.
|
| Int64Array | 7 |
A result of type Int64 Array />.
|
| BlobArray | 8 |
A result of type Blob Array />.
|
| TimestampArray | 9 |
A result of type Timestamp Array />.
|
| StringArray | 10 |
A result of type String Array />.
|
See Also