19 namespace Deveel.Data.Sql.Parser {
21 public string Name {
get;
private set; }
23 public string Value {
get;
private set; }
27 Name = ((IdentifierNode) node).Text;
29 Value = ((StringLiteralNode) node).Value;
32 return base.OnChildNode(node);
This is a simple identifier within a SQL grammar.
Defines the contract for nodes in an AST model for a SQL grammar analysis and parsing.
A node containing a constant literal string passed within an SQL command.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...