我的 CakePHP 应用程序中有一个操作,它通过模型中的方法运行一个简单的更新语句,如下所示:
public function remove_nasties(){
$query = 'UPDATE holdings
SET holdings.account_id = CONCAT(account_id, "n")
WHERE holdings.nasty = 1 AND Right(holdings.account_id,1) != "n";';
return $this->query($query);
}
查询运行良好,但我如何获得受影响的行数?返回的只是一个空数组。