Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public function havingStatement($statement)
 {
     $this->addHaving(Staple_Query_Condition::Statement($statement));
     return $this;
 }