19 namespace Deveel.Data.Sql.Parser {
21 public string Status {
get;
private set; }
25 (node.
NodeName.Equals(
"LOCK", StringComparison.OrdinalIgnoreCase) ||
26 node.
NodeName.Equals(
"UNLOCK", StringComparison.OrdinalIgnoreCase))) {
30 return base.OnChildNode(node);
Defines the contract for nodes in an AST model for a SQL grammar analysis and parsing.
Represents a keyword found during the compilation of a source text.
override ISqlNode OnChildNode(ISqlNode node)
During the initialization of the node from the parser, this method is called for every child node add...
string NodeName
Gets the name of the node analyzed from the parser.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...