20 namespace Deveel.Data.Sql.Parser {
35 public string Text {
get;
private set; }
39 var text = Tokens.First().Text;
40 if (text[0] ==
'\"' &&
41 text[text.Length - 1] ==
'\"')
42 text = text.Substring(1, text.Length - 2);
This is a simple identifier within a SQL grammar.
override void OnNodeInit()
After the initialization of the node from the parser, this method is invoked to let the specific init...
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...