Exemple #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();
 }
Exemple #2
0
 public DeleteSQL()
 {
     this.tables = new SQLTable();
     this.where  = new WhereSQL();
 }
Exemple #3
0
 public InsertSQL()
 {
     this.tables      = new SQLTable();
     this.fieldValues = new FieldValuesSQL();
     this.ignore      = true;
 }
Exemple #4
0
 public virtual void SetTables(SQLTable tables)
 {
     this.tables = tables;
 }
Exemple #5
0
 public UpdateSQL()
 {
     this.tables      = new SQLTable();
     this.fieldValues = new FieldValuesSQL();
     this.where       = new WhereSQL();
 }