DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
SqlStatementNode.cs
Go to the documentation of this file.
1 using System;
2 
4 
5 namespace Deveel.Data.Sql.Parser {
8  if (visitor is StatementBuilder)
9  BuildStatement((StatementBuilder)visitor);
10  }
11 
12  protected abstract void BuildStatement(StatementBuilder builder);
13  }
14 }
An interface that allows implementations of the visitor pattern on SQL compiled nodes.
An implementation of ISqlNode that accepts visits from a ISqlNodeVisitor
void Accept(ISqlNodeVisitor visitor)
Called by an implementation of ISqlNodeVisitor during the tree-node evaluation.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...
Definition: SqlNode.cs:32