Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Результаты запросов в виде объектов #30

Open
globalmac opened this issue May 3, 2015 · 0 comments
Open

Comments

@globalmac
Copy link

Доброго времени суток.
Как-то пытался работать с результатом запроса в виде объектов, а не ассоциативного массива и понял что такой возможности не предусмотрено или я что-то где-то упустил=).
Поправьте меня, если есть другие варианты.
Пользуюсь таким хаком:

public function fetchObjects($result) 
{
    return mysqli_fetch_object($result);
}

Строка

public function getRowObjects()
{
    $query = $this->prepareQuery(func_get_args());
    if ($res = $this->rawQuery($query)) 
    {
        $ret = $this->fetchObjects($res);
        $this->free($res);
        return $ret;
    }
    return FALSE;
}

Список

public function getAllObjects() 
{
    $ret   = array();
    $query = $this->prepareQuery(func_get_args());
    if ( $res = $this->rawQuery($query) )
    {
        while($row = $this->fetchObjects($res))
        {
            $ret[] = $row;
        }
        $this->free($res);
    }
    return $ret;
}

Результат

// Строка
$row = $db->getRowObjects("SELECT * FROM table WHERE id = ?i", 500);
echo $row->value;

// Список
$data = $db->getAllObjects("SELECT * FROM table");
foreach($data as $row) 
{
    echo $row->value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant