示例#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() : [];
 }