Represents the database type supported by the application.
Namespace:
Dundas.BI.Data
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
SyntaxPublic Enumeration DatabaseType
public enum class DatabaseType
Members|
| Member name | Value | Description |
|---|
| None | 0 | Undefined data type. |
| Binary | 1 | Binary data. |
| Boolean | 2 | Boolean value of true or false. |
| Guid | 3 | A globally unique identifier. |
| String | 32 | String type. |
| StringFixedLength | 33 | A fixed-length string. |
| Unsupported | 34 | An unsupported data type (values are converted to string). |
| DateTime | 16 | Date and time. |
| DateTimeOffset | 17 | Date and time data with time zone awareness. |
| Double | 256 | Floating point numeric value. |
| Currency | 257 | Currency type. |
| Decimal | 258 | Fixed precision and scale numeric value. |
| SByte | 769 | A signed 8-bit integer with values between -128 and 127. |
| Int16 | 770 | A signed 16-bit integer with values between -32768 and 32767. |
| Int32 | 772 | A signed 32-bit integer with values between -2147483648 and 2147483647. |
| Int64 | 776 | A signed 64-bit integer with values between -9223372036854775808 and 9223372036854775807. |
| Byte | 1793 | An unsigned 8-bit integer ranging in value from 0 to 255. |
| UInt16 | 1794 | An unsigned 16-bit integer ranging in value from 0 and 65535. |
| UInt32 | 1796 | An unsigned 32-bit integer ranging in value from 0 and 4294967295. |
| UInt64 | 1800 | An unsigned 64-bit integer ranging in value from 0 and 18446744073709551615. |
See Also