Skip to main content

Enum SsasDataType

Namespace: Varigence.Languages.Biml.Cube

Assembly: Biml.dll

C#


public enum SsasDataType

Fields

FieldsDescription
BigIntSpecifies a 64-bit signed integer, which is equivalent to Int64 (.NET) or DBTYPE_I8 (OLE DB).
BooleanSpecifies a boolean value, which is equivalent to Boolean (.NET) or DBTYPE_BOOL (OLE DB).
CurrencySpecifies a currency value, which is equivalent to Decimal (.NET) or DBTYPE_CY (OLE DB).
DateSpecifies a date stored as a double, which is equivalent to DateTime (.NET) or DBTYPE_DATE (OLE DB).
DoubleSpecifies a double precision floating point number, which is equivalent to Double (.NET) or DBTYPE_R8 (OLE DB).
InheritedSpecifies that the data type should be inherited from the parent object.
IntegerSpecifies a 32-bit signed integer, which is equivalent to Int32 (.NET) or DBTYPE_I4 (OLE DB).
SingleSpecifies a single precision floating point number, which is equivalent to Single (.NET) or DBTYPE_R4 (OLE DB).
SmallIntSpecifies a 16-bit signed integer, which is equivalent to Int16 (.NET) or DBTYPE_I2 (OLE DB).
TinyIntSpecifies a 8-bit signed integer, which is equivalent to SByte (.NET) or DBTYPE_I1 (OLE DB).
UnsignedBigIntSpecifies a 64-bit unsigned integer, which is equivalent to UInt64 (.NET) or DBTYPE_UI8 (OLE DB).
UnsignedIntSpecifies a 32-bit signed integer, which is equivalent to UInt32 (.NET) or DBTYPE_UI4 (OLE DB).
UnsignedSmallIntSpecifies a 16-bit unsigned integer, which is equivalent to UInt16 (.NET) or DBTYPE_UI1 (OLE DB).
UnsignedTinyIntSpecifies a 8-bit unsigned integer.
WCharSpecifies a unicode character string (null terminated), which is equivalent to String (.NET) or DBTYPE_WSTR (OLE DB).