Symfony2 Doctrine抛出NonUniqueResultException

时间:2013-07-22 22:04:45

标签: php symfony doctrine-orm

我在请求中抛出NonUniqueResultException时遇到问题

public function getLastViewUpdate($view)
{
    $qb = $this->getEntityManager()->createQueryBuilder();

    $result = $qb->select('vu')
        ->from('EasyApp\ApplicationBundle\Entity\ViewUpdate', 'vu')
        ->where('vu.view = :view')
        ->orderBy('vu.date','DESC')
        ->setParameter('view', $view)
        ->getQuery()
        ->getSingleResult();

    return $result;
}

但我不知道为什么,我可能要导入一些东西,但我找不到

CRITICAL - Uncaught PHP Exception Doctrine\ORM\NonUniqueResultException: "" at /Users/antoine/Documents/projects/easyApp/application/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php line 621 

感谢您的帮助

3 个答案:

答案 0 :(得分:33)

您可以查看getSingleResult功能

的声明
/**
 * Gets the single result of the query.
 *
 * Enforces the presence as well as the uniqueness of the result.
 *
 * If the result is not unique, a NonUniqueResultException is thrown.
 * If there is no result, a NoResultException is thrown.
 *
 * @param integer $hydrationMode
 * @return mixed
 * @throws NonUniqueResultException If the query result is not unique.
 * @throws NoResultException If the query returned no result.
 */
public function getSingleResult($hydrationMode = null)
{
    ...
    if (count($result) > 1) {
        throw new NonUniqueResultException;
    }
    ...
}

解决问题您可以设置LIMIT进行查询,只使用->setMaxResults(1)获取一个结果。

答案 1 :(得分:7)

如果您期望超过1个结果,请不要使用getSingleResult ...使用此功能会对结果进行单一检查,这是此功能的意图。

许多选择:

  • 使用getSingleResult处理异常(例如try {...} catch (NonUniuqueResultException $e) {...}或调整数据库结构以避免重复,
  • 使用getSingleResult并添加setMaxResults(1),但这确实是一种信任您的数据库模型的奇怪方式,
  • 使用getResult并对返回的结果执行某些操作。

答案 2 :(得分:1)

这只意味着您有两个或更多具有相同视图的ViewUpdates。