Zend db-更新不起作用

时间:2018-06-25 14:01:24

标签: php zend-db

我正在使用Zend db更新MySQL表中的记录。我有一个得到uuid的SELECT;然后执行以下操作以更新相同的记录:

$data = array(
    'fieldname' => 'foobar',
);

$where = array();
$where["uuid = ?"] = $uuid;

$db->update('customers', $data, $where);

不幸的是,记录没有更新,并且我没有收到错误消息。 uuid是正确的。

1 个答案:

答案 0 :(得分:0)

我想我错过了执行程序。我最终做了这样的事情:

$update = $db->update('customers');
$update->where(['uuid' => $uuid]);
$update->set(['fieldname' => 'foobar']);

$statement = $db->prepareStatementForSqlObject($update);
$results = $statement->execute();

这很好。