CI_DB_query_builder::_reset_select PHP Method

_reset_select() protected method

Resets the query builder values. Called by the get() function
protected _reset_select ( ) : void
return void
    protected function _reset_select()
    {
        $this->_reset_run(array('qb_select' => array(), 'qb_from' => array(), 'qb_join' => array(), 'qb_where' => array(), 'qb_groupby' => array(), 'qb_having' => array(), 'qb_orderby' => array(), 'qb_aliased_tables' => array(), 'qb_no_escape' => array(), 'qb_distinct' => FALSE, 'qb_limit' => FALSE, 'qb_offset' => FALSE));
    }