Pop\Db\Adapter\Mysqli::query PHP Метод

query() публичный Метод

Execute the SQL query and create a result resource, or display the SQL error.
public query ( string $sql ) : void
$sql string
Результат void
    public function query($sql)
    {
        if (!($this->result = $this->connection->query($sql))) {
            $this->showError();
        }
    }