22 namespace Deveel.Data.Sql.Parser {
34 internal BigInteger BigValue {
get;
private set; }
40 get {
return BigValue == null ? -1 : BigValue.ToInt64(); }
45 var token = Tokens.First();
46 BigValue = BigInteger.Parse(token.Text);
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.
override void OnNodeInit()
After the initialization of the node from the parser, this method is invoked to let the specific init...