データベースの特定のフィールドで1ずつインクリメントしようとすると、問題が発生しました。アクティブなレコードがある場合とない場合で試しました。
私の関数は次のようになります(私のモデルでは)
function _set_reads($id){
$this->db->set('reads', 'reads+1', FALSE)
$this->db->where('id', $id);
$this->db->update('article');
}
と
function _set_reads($id){
$sql = 'update article set reads=reads+1 where id=?';
$this->db->query($sql, array($id));
}
どちらの場合も同じエラーが発生し、次のエラーメッセージが表示されます。
Error Number: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'reads+1 WHERE `id` = '15'' at line 1
UPDATE `article` SET `reads` = reads+1 WHERE `id` = '15'
最新バージョンのMAMPを使用しています