19 namespace Deveel.Data.Sql.Parser {
 
   21         public long Count { 
get; 
private set; }
 
   23         public long Offset { 
get; 
private set; }
 
   26             long? arg1 = null, arg2 = null;
 
   27             foreach (var childNode 
in ChildNodes) {
 
   30                         arg1 = ((IntegerLiteralNode) childNode).Value;
 
   31                     } 
else if (arg2 == null) {
 
   32                         arg2 = ((IntegerLiteralNode) childNode).Value;
 
   37             if (arg1 == null && arg2 == null)
 
override void OnNodeInit()
After the initialization of the node from the parser, this method is invoked to let the specific init...
 
An error that occurs when compiling a input string into a SQL object. 
 
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.