LiteralType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The literal types.
public enum LiteralType
type LiteralType =
Public Enum LiteralType
- Inheritance
-
LiteralType
Fields
Name | Value | Description |
---|---|---|
Integer | 0 | The integer type is a sequence of digits without '.' or 'e' |
Real | 1 | A sequence of digits that has an e |
Money | 2 | Represented as string of digits with an optional decimal point. Has to start with a currency symbol. |
Binary | 3 | Hexadecimal numbers, they have to be prefixed with 0x. |
String | 4 | A string of characters that are delimited with the quote (') character If the QUOTED_IDENTIFIER is off the delimiter (") is also valid. |
Null | 5 | The reserved word null. |
Default | 6 | DEFAULT keyword is used. |
Max | 7 | MAX context sensitive keyword is used. |
Odbc | 8 | Odbc format literals in curly braces { }. |
Identifier | 9 | An Identifier that is treated like a Literal, such as a parameter default |
Numeric | 10 | A sequence of numbers with a '.' |