Enum SupaDataType
The type of a value stored in a ISupaRecord.
Namespace: Subsembly.Supa
Assembly: Subsembly.Sepa.dll
Syntax
public enum SupaDataType
Fields
Name | Description |
---|---|
Bool | Boolean true/false value. Use GetBool(String) and SetBool(String, Boolean) for access. |
Date | Date value. Use GetDate(String) and SetDate(String, DateTime) for access. |
Decimal | Signed or unsigned decimal value, usually for monetary amounts. Use GetDecimal(String) and SetDecimal(String, Decimal) for access. |
Number | Unsigned integer value. Use GetNumber(String) and SetNumber(String, Int32) for access. |
String | Simple string. Use GetValue(String) and SetValue(String, String) for access. |