18 using System.Collections.Generic;
20 namespace Deveel.Data.Sql.Parser {
27 public string TableName {
get;
private set; }
29 public IEnumerable<string> ColumnNames {
get;
private set; }
33 TableName = ((ObjectNameNode) node).Name;
36 }
else if (node.
NodeName ==
"column_list") {
40 return base.OnChildNode(node);
Defines the contract for nodes in an AST model for a SQL grammar analysis and parsing.
Represents a composed name for an object within the system.
string NodeName
Gets the name of the node analyzed from the parser.
override ISqlNode OnChildNode(ISqlNode node)
During the initialization of the node from the parser, this method is called for every child node add...
The root node of an expression used to select a set of items from a set of sources defined...
This interface acts like a marker that indicates if a ISqlNode represents a SQL expression.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...