20 namespace Deveel.Data.Sql.Parser {
32 public string Value {
get;
private set; }
36 var text = Tokens.First().Text;
37 if (!String.IsNullOrEmpty(text)) {
38 if (text[0] ==
'\'' &&
39 text[text.Length - 1] ==
'\'')
40 text = text.Substring(1, text.Length - 2);
override void OnNodeInit()
After the initialization of the node from the parser, this method is invoked to let the specific init...
A node containing a constant literal string passed within an SQL command.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...