コード例 #1
0
 public UpdateNode(NameSpace ns, int maxdepth)
 {
     _id        = ns.GetTableName();
     _column    = ns.GetTableColumn(_id);
     _assigment = new ExspresionsNodes.ExspressionNode(ns, maxdepth, _column._type, true, _id);
     _where     = new WhereNode(ns, maxdepth, _id, true);
 }
コード例 #2
0
 public DeleteNode(NameSpace ns, int maxdepth)
 {
     _id    = ns.GetTableName();
     _where = new WhereNode(ns, maxdepth, _id, true);
 }