Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ComparePos ¶
Types ¶
type Kind ¶
type Kind int
const ( // A keyword (like SELECT) SQLKeyword Kind = iota // Numeric literal Number // A character that cloud not be tokenized Char // Single quoted string i.e: 'string' SingleQuotedString // National string i.e: N'string' NationalStringLiteral // Comma Comma // Whitespace Whitespace // comment node Comment // multiline comment node MultilineComment // = operator Eq // != or <> operator Neq // < operator Lt // > operator Gt // <= operator LtEq // >= operator GtEq // + operator Plus // - operator Minus // * operator Mult // / operator Div // % operator Caret // ^ operator Mod // Left parenthesis `(` LParen // Right parenthesis `)` RParen // Period Period // Colon Colon // DoubleColon DoubleColon // Semicolon Semicolon // Backslash Backslash // Left bracket `]` LBracket // Right bracket `[` RBracket // & Ampersand // Left brace `{` LBrace // Right brace `}` RBrace // ILLEGAL sqltoken ILLEGAL )
type SQLWord ¶
type SQLWord struct { Value string QuoteStyle rune Keyword string Kind dialect.KeywordKind }
func MakeKeyword ¶
func (*SQLWord) NoQuoteString ¶ added in v0.2.27
Click to show internal directories.
Click to hide internal directories.