Exemple #1
0
 /**
  * An open ended where statement
  * @param string | Staple_Query_Select $statement
  */
 public function whereStatement($statement)
 {
     $this->addWhere(Staple_Query_Condition::Statement($statement));
     return $this;
 }
 public function havingStatement($statement)
 {
     $this->addHaving(Staple_Query_Condition::Statement($statement));
     return $this;
 }