true来查询就报错Syntax error, unexpected token IDENTIFIER(FOR), near to ' UPDATE' {代码...} phalcon版本1.3.4 求证,你们的phalcon使用行锁for_upade会报..."/> true来查询就报错Syntax error, unexpected token IDENTIFIER(FOR), near to ' UPDATE' {代码...} phalcon版本1.3.4 求证,你们的phalcon使用行锁for_upade会报...">

>백엔드 개발 >PHP 튜토리얼 >Phalcon使用行锁for_upade报错?

Phalcon使用行锁for_upade报错?

WBOY
WBOY원래의
2016-06-06 20:31:171439검색

开启事务后,按照文档说的参数"for_update" => true来查询就报错Syntax error, unexpected token IDENTIFIER(FOR), near to ' UPDATE'

<code>$this->db->begin();
$robots = Robots::find(array(
    "conditions" => "name LIKE %steve%",
    "order" => "name",
    "for_update" => true
));

...

$this->db->commit();
</code>

phalcon版本1.3.4
求证,你们的phalcon使用行锁for_upade会报错吗?还是我的代码不对?
http://www.myleftstudio.com/reference/models.html#finding-records

回复内容:

开启事务后,按照文档说的参数"for_update" => true来查询就报错Syntax error, unexpected token IDENTIFIER(FOR), near to ' UPDATE'

<code>$this->db->begin();
$robots = Robots::find(array(
    "conditions" => "name LIKE %steve%",
    "order" => "name",
    "for_update" => true
));

...

$this->db->commit();
</code>

phalcon版本1.3.4
求证,你们的phalcon使用行锁for_upade会报错吗?还是我的代码不对?
http://www.myleftstudio.com/reference/models.html#finding-records

是的,phalcon 1.3.X都有这个问题,应该是在今年6月份的时候phalcon 2.0.4解决了这个bug
解决办法,用最新的phalcon,或者使用pdo执行纯sql

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.