用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1748|回复: 0
收起左侧

[讨论/交流] 版本2.1.0 oci8_result.php一个明显的bug

[复制链接]
发表于 2012-3-1 17:41:19 | 显示全部楼层 |阅读模式
public function num_rows()
{
  if ($this->num_rows === 0 && count($this->result_array()) > 0)
  {
   $this->num_rows = count($this->result_array());
   @oci_execute($this->stmt_id);
   if ($this->curs_id)
   {
    @oci_execute($this->curs_id);
   }
  }
  return $rowcount;
}

oci8_result.php版本2.1.0
$rowcount没定义,这么明显的bug也没测出来?

本版积分规则