0

我曾多次使用 Zend_Db_Table 更新,但这次我遇到了问题。我不知道为什么,所以请告诉我哪里做错了。

$where = $directory->getAdapter()->quoteInto('id = ?', $id);

$total_votes = array('total_votes' => '(total_votes + 1)');

$directory->update($total_votes, $where);

/// $directory is a db table variable.

它不会更新数据库中的值。我使用 Profiler 打印查询:

**UPDATE dealers_directory SET `total_votes` = ? WHERE (`id` = 3)**

我不明白为什么要添加“?” 而不是 (total_votes + 1)。我在同一个应用程序的几个地方使用过它,它工作正常,但我不知道这里有什么问题。

谢谢。

4

1 回答 1

0

使用new Zend_Db_Expr('(total_votes + 1)').

于 2012-05-01T08:14:13.943 回答