Ejemplo n.º 1
0
 public function _buildQuery()
 {
     $this->_fetchStyle = $this->_query->selectType;
     $queryBindValuesExtractor = new QueryBoundValuesExtractor($this->_query);
     $this->_boundValues = $queryBindValuesExtractor->extract();
     $this->_sql = $this->_adapter->buildQuery($this->_query);
 }
Ejemplo n.º 2
0
 public function getParameters()
 {
     $queryBindValuesExtractor = new QueryBoundValuesExtractor($this->query);
     return $queryBindValuesExtractor->extract();
 }