19 namespace Deveel.Data.Sql.Parser {
21 public string ParameterName {
get;
private set; }
26 ParameterName = this.FindNode<IdentifierNode>().Text;
27 ParameterType = this.FindNode<DataTypeNode>();
override void OnNodeInit()
After the initialization of the node from the parser, this method is invoked to let the specific init...
Describes the information of a data type as found in a SQL string.
The default implementation of ISqlNode, that is a node in the text analysis parsing of SQL commands...