Exemplo n.º 1
0
 public Sql_Where(String keyword, Sql_ListOfConditions listOfConditions)
 {
     if (keyword.Equals(""))
     {
         isEmpty = true;
         return;
     }
     isEmpty = false;
     //
     this.listOfConditions = listOfConditions;
 }
Exemplo n.º 2
0
 private void setConditionSelect(Sql_Select_Table[] tables)
 {
     this.Conditions = this.where.listOfConditions;
     this.Conditions.setAttrsTable(tables);
 }