Enum SqlElementKind
- Namespace
- ItTiger.TigerQuery
- Assembly
- ItTiger.TigerQuery.dll
Identifies a lexical element returned by ReadElement().
public enum SqlElementKind
Fields
BracketedIdentifier = 5- A bracket-delimited identifier, including delimiters.
DoubleQuotedString = 4- A double-quoted string or identifier, including delimiters.
EndOfLine = 6- A marker indicating that a text element ended at a line boundary.
EndOfStream = 7- A marker indicating that a text element ended at the end of input.
MultiLineComment = 2- A possibly nested
/* ... */comment. SingleLineComment = 1- A
--comment, including its line ending when present. SingleQuotedString = 3- A single-quoted string, including delimiters and escaped quotes.
Text = 0- Undelimited SQL text.
Unknown = 8- No specific element or terminating condition is known.