这是一个简单的问题,但我环顾四周,找不到答案。 如何从ZF2中的更新/插入SQL查询中提取受影响的行数?
以下代码对我来说很好用(它会更新),但我想执行正确的错误检查:
public function updateSomeField($id, $some_field){
$data = array(
'some_field' => $some_field
);
$sql = new Sql($this->dbAdapter);
$update = $sql->update();
$update->table('Table1');
$update->set($data);
$update->where(array('id' => $id));
$statement = $sql->prepareStatementForSqlObject($update);
// need help with the code below...
// got this from here:
// http://stackoverflow.com/questions/11491249/zend-framework-db-update-result
$result = 0;
try {
$result = $statement->execute(); // works fine
} catch (\Exception $e) {
die('Error: ' . $e->getMessage());
}
if (empty($result)) { // not sure if this is applicable??
die('Zero rows affected');
}
return $result; // ideally, I'd like to return $numRows
}
目前,成功时,$ result是一个对象。我试图对其进行破坏,但它没有显示出价值。
任何帮助将不胜感激。感谢。
答案 0 :(得分:2)
你试过了吗?
if ( $result->count() === 0 ) {
die('Zero rows affected');
}
?据我所知,它包括任何可数的,包括affected_rows。
答案 1 :(得分:2)
以下是作为答案的正在运行的代码(因为它可以比在评论中更容易找到)
try {
$affectedRows = $statement->execute()->getAffectedRows();
} catch (\Exception $e) {
die('Error: ' . $e->getMessage());
}
if (empty($affectedRows)) {
die('Zero rows affected');
}
return $affectedRows;