CakePHP受到影响的原始SQL语句行

我在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);
}

查询运行正常,但如何获取受影响的行数?返回的所有内容都是一个空数组.

解决方法:

模型方法:getAffectedRows():

http://book.cakephp.org/2.0/en/models/additional-methods-and-properties.html#model-getaffectedrows

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...