提交 b4fbec1b 编写于 作者: weixin_47267244's avatar weixin_47267244

修复 Imi\Db\Drivers\Swoole\Statement->nextRowset()

上级 fdcc9b37
......@@ -380,7 +380,23 @@ class Statement extends BaseStatement implements IStatement
*/
public function nextRowset(): bool
{
return (bool) next($this->result);
if ($this->statement instanceof \Swoole\Coroutine\MySQL\Statement)
{
$result = $this->statement->nextResult();
if ($result)
{
$result = $this->statement->fetchAll();
if (false === $result)
{
$result = [];
}
$this->result = $result;
return true;
}
}
return false;
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册