Ejemplo n.º 1
0
 public JoinNode(Table rightTable, WhereNode jw, JoinOpt joption)
 {
     this.rightTable = rightTable;
     this.jw         = jw;
     this.joption    = joption;
 }
Ejemplo n.º 2
0
 public WhereSegmentNode(WhereNode left, LogicOpt opt, WhereNode right)
 {
     this.left  = left;
     this.opt   = opt;
     this.right = right;
 }