DatabaseType Enumeration

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)
Syntax
public enum DatabaseType
Members
  Member nameValueDescription
None0Undefined data type.
Binary1Binary data.
Boolean2Boolean value of true or false.
Guid3A globally unique identifier.
String32String type.
StringFixedLength33A fixed-length string.
Unsupported34An unsupported data type (values are converted to string).
DateTime16Date and time.
DateTimeOffset17Date and time data with time zone awareness.
Double256Floating point numeric value.
Currency257Currency type.
Decimal258Fixed precision and scale numeric value.
SByte769A signed 8-bit integer with values between -128 and 127.
Int16770A signed 16-bit integer with values between -32768 and 32767.
Int32772A signed 32-bit integer with values between -2147483648 and 2147483647.
Int64776A signed 64-bit integer with values between -9223372036854775808 and 9223372036854775807.
Byte1793An unsigned 8-bit integer ranging in value from 0 to 255.
UInt161794An unsigned 16-bit integer ranging in value from 0 and 65535.
UInt321796An unsigned 32-bit integer ranging in value from 0 and 4294967295.
UInt641800An unsigned 64-bit integer ranging in value from 0 and 18446744073709551615.
See Also