Gawie 发表于 2013-5-24 12:11:55

update 有错误么?各位帮忙看一下

$this->db->update('article',array('title' => '123'),array('aid'=>'16'));

一直报错:

A Database Error OccurredYou must use the "set" method to update an entry.Filename: F:\phpServer\phpnow\htdocs\aiyuedu\system\database\DB_active_rec.phpLine Number: 1272

Gawie 发表于 2013-5-24 12:13:22

使用这样的写法,也报错

$this->db->set(array('title' => '123'));
$this->db->where(array('aid'=>'16'));
$this->db->update('article');
页: [1]
查看完整版本: update 有错误么?各位帮忙看一下