Expand description
SQL Tokenizer
The tokenizer (a.k.a. lexer) converts a string into a sequence of tokens.
The tokens then form the input for the parser, which outputs an Abstract Syntax Tree (AST).
Structs§
- Location
- Location in input string
- Token
With Location - A Token with Location attached to it
- Tokenizer
- SQL Tokenizer
- Tokenizer
Error - Tokenizer error
- Word
- A keyword (like SELECT) or an optionally quoted SQL identifier
Enums§
- Token
- SQL Token enumeration
- Whitespace