CodeIgniter 是否支持PDO查询?给个例子
程序员文章站
2022-05-16 15:07:51
...
配置CodeIgniter为PDO 类型,但是怎么都查询不到数据,却可以查处有多少记录。
代码
仔细跟踪代码,发现有如下一句:
#文件 /system/database/drivers/pdo/pdo_driver.php
function _execute($sql)
{
$sql = $this->_prep_query($sql);
$result_id = $this->conn_id->prepare($sql);
if (is_object($result_id) && $result_id->execute())
{
if (is_numeric(stripos($sql, 'SELECT')))
{
$this->affect_rows = count($result_id->fetchAll());
}
else
{
$this->affect_rows = $result_id->rowCount();
}
}
else
{
$this->affect_rows = 0;
return FALSE;
}
return $result_id;
}
问题
$this->affect_rows = count($result_id->fetchAll());
这里的CI使用 $result_id->fetchAll() 来统计符合条件的个数,但是这个 fetchAll() 执行一次之后就不能再得到数据。所以导致后期就无法获得数据。
测试
db->query($sql)->result_array();
}
}
//这样写就会有结果记录,但是默认的 $this->db->query($sql) .. 却又成摆设了!
class User_model extends CI_Model{
public function getList(){
$sql = "select * from ci_user";
$stmt = $this->db->conn_id->prepare($sql);
$stmt->execute();
return $stmt->fetchAll();
}
}
应该是不支持,但是官网下载的里面却带有PDO包。
想确认的是,codeigniter是否真的支持PDO?希望能够给个例子!
回复内容:
配置CodeIgniter为PDO 类型,但是怎么都查询不到数据,却可以查处有多少记录。
代码
仔细跟踪代码,发现有如下一句:
#文件 /system/database/drivers/pdo/pdo_driver.php
function _execute($sql)
{
$sql = $this->_prep_query($sql);
$result_id = $this->conn_id->prepare($sql);
if (is_object($result_id) && $result_id->execute())
{
if (is_numeric(stripos($sql, 'SELECT')))
{
$this->affect_rows = count($result_id->fetchAll());
}
else
{
$this->affect_rows = $result_id->rowCount();
}
}
else
{
$this->affect_rows = 0;
return FALSE;
}
return $result_id;
}
问题
$this->affect_rows = count($result_id->fetchAll());
这里的CI使用 $result_id->fetchAll() 来统计符合条件的个数,但是这个 fetchAll() 执行一次之后就不能再得到数据。所以导致后期就无法获得数据。
测试
db->query($sql)->result_array();
}
}
//这样写就会有结果记录,但是默认的 $this->db->query($sql) .. 却又成摆设了!
class User_model extends CI_Model{
public function getList(){
$sql = "select * from ci_user";
$stmt = $this->db->conn_id->prepare($sql);
$stmt->execute();
return $stmt->fetchAll();
}
}
应该是不支持,但是官网下载的里面却带有PDO包。
想确认的是,codeigniter是否真的支持PDO?希望能够给个例子!
可以拓展下driver