Classes

File mvc/model/SelectQueryResultMapper.class.php

File mvc/model/SelectQueryResultMapper.class.php

  1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 
<?php
/**
 * @package     MVC
 * @subpackage  Model
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Loic ROUCHON <horn@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2009 10 05
*/

class SelectQueryResultMapper implements SelectQueryResult
{
    /**
     * @var SelectQueryResult the internal query result object
     */
    protected $query_result;

    /**
     * @var MappingModel the model that will instantiate retrieved objects
     */
    protected $model;

    /**
     * initialize the dao
     * @param SQLQuerier $querier the querier that will be used to interact with the database
     * @param MappingModel $model the model on which rely to provides services
     */
    public function __construct(QueryResult $query_result, MappingModel $model)
    {
        $this->query_result = $query_result;
        $this->model = $model;
    }

    public function get_query()
    {
        return  $this->query_result->get_query();
    }

    public function get_parameters()
    {
        return  $this->query_result->get_parameters();
    }

    public function set_fetch_mode($fetch_mode)
    {
        return  $this->query_result->set_fetch_mode($fetch_mode);
    }

    public function get_rows_count()
    {
        return $this->query_result->get_rows_count();
    }

    public function __destruct()
    {
        $this->dispose();
    }

    public function has_next()
    {
        return $this->query_result->has_next();
    }

    public function fetch()
    {
        return $this->model->new_instance($this->query_result->fetch());
    }

    public function rewind()
    {
        return $this->query_result->rewind();
    }

    public function valid()
    {
        return $this->query_result->valid();
    }

    public function current()
    {
        return $this->model->new_instance($this->query_result->current());
    }

    public function key()
    {
        return $this->query_result->key();
    }

    public function next()
    {
        return $this->query_result->next();
    }

    public function dispose()
    {
        return $this->query_result->dispose();
    }
}
?>