コード例 #1
0
 public SelectSQL()
 {
     this.tables  = new SQLTable();
     this.fields  = new FieldsSQL();
     this.where   = new WhereSQL();
     this.orderBy = new OrderBySQL();
     this.groupBy = new GroupBySQL();
     this.limit   = new LimitSQL();
 }
コード例 #2
0
 public virtual void SetLimit(LimitSQL limit)
 {
     this.limit = limit;
 }