zend框架中如何写更新查询
How write update query in zend framework
我正在使用 Zend 框架 1.12。我想知道 Zend 框架中更新查询的语法。我的更新查询格式是:
update `product` SET qty=qty+1 where uid=2354
qty=qty+1
zf1
中的句法是什么
您必须在扩展 Zend_Db_Table_Abstract
的 class 中使用此代码
$whereQuery = array('uid = ?' => 2354);
$dataQuery = array('qty' => new Zend_Db_Expr('qty + 1'));
$this->update($dataQuery, $whereQuery);
我正在使用 Zend 框架 1.12。我想知道 Zend 框架中更新查询的语法。我的更新查询格式是:
update `product` SET qty=qty+1 where uid=2354
qty=qty+1
zf1
您必须在扩展 Zend_Db_Table_Abstract
的 class 中使用此代码$whereQuery = array('uid = ?' => 2354);
$dataQuery = array('qty' => new Zend_Db_Expr('qty + 1'));
$this->update($dataQuery, $whereQuery);