我看到了一个
/**
* 关闭数据库(或者重新连接)
* @access public
* @return $this
*/
public function close()
{
$this->linkID = null;
$this->linkWrite = null;
$this->linkRead = null;
$this->links = [];
// 释放查询
$this->free();
return $this;
}调用
Db::close(); 显示method not exist:think\db\Query->close 正常应该是怎么关闭数据库链接的?