Ouzo\Db\QueryBoundValuesExtractor::extract PHP 메소드

extract() 공개 메소드

public extract ( )
    public function extract()
    {
        $this->_addBindValues($this->query);
        return $this->_boundValues;
    }

Usage Example

예제 #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);
 }
All Usage Examples Of Ouzo\Db\QueryBoundValuesExtractor::extract