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

[版本 2.x] update 有错误么?各位帮忙看一下

[复制链接]
发表于 2013-5-24 12:11:55 | 显示全部楼层 |阅读模式
$this->db->update('article',array('title' => '123'),array('aid'=>'16'));

一直报错:

A Database Error Occurred

You must use the "set" method to update an entry.

Filename: F:\phpServer\phpnow\htdocs\aiyuedu\system\database\DB_active_rec.php

Line Number: 1272


 楼主| 发表于 2013-5-24 12:13:22 | 显示全部楼层
使用这样的写法,也报错

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

本版积分规则