예제 #1
0
파일: Where.php 프로젝트: solution10/sql
 /**
  * Returns an array of all the parameter that have been passed to where()
  * ready to be thrown at PDO.
  *
  * @return  array
  */
 public function getWhereParams()
 {
     return isset($this->whereBuilder) ? $this->whereBuilder->getConditionParameters() : [];
 }
예제 #2
0
파일: Having.php 프로젝트: solution10/sql
 /**
  * Returns an array of all the parameter that have been passed to having()
  * ready to be thrown at PDO.
  *
  * @return  array
  */
 public function getHavingParams()
 {
     return isset($this->havingBuilder) ? $this->havingBuilder->getConditionParameters() : [];
 }