19 namespace Deveel.Data.Sql.Parser {
21 public string ExceptionName {
get;
private set; }
23 public long ErrorNumber {
get;
private set; }
27 ExceptionName = ((StringLiteralNode) node).Value;
29 ErrorNumber = ((IntegerLiteralNode) node).Value;
32 return base.OnChildNode(node);
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.
override ISqlNode OnChildNode(ISqlNode node)
During the initialization of the node from the parser, this method is called for every child node add...
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...
Encapsulates a number that is any falling in the group of integers.