如何测试 Doctrine2 DQL 查询是否产生有效结果?

发布于 2024-12-02 22:11:27 字数 387 浏览 0 评论 0原文

function search_event($parish, $genre, $pricerange)
{
    $query = $this->em->createQuery('SELECT e from Events e WHERE e.parish = :parish AND e.genre = :genre');
    $query->setParameter('parish', $parish);
    $query->setParameter('genre', $genre);
    $result = $query->getResult();     
    return $result;
}

在上面的示例中,如何测试 $result 是否有效?

function search_event($parish, $genre, $pricerange)
{
    $query = $this->em->createQuery('SELECT e from Events e WHERE e.parish = :parish AND e.genre = :genre');
    $query->setParameter('parish', $parish);
    $query->setParameter('genre', $genre);
    $result = $query->getResult();     
    return $result;
}

In the example above, how do I test if $result is valid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

や三分注定 2024-12-09 22:11:27

您可以执行多种操作来检查返回的集合中是否存在实体。有关完整列表,请参阅 ArrayCollection可用的方法。

// Is result empty?
$result->isEmpty();

// Is result count > 0?
0 < $result->count();
0 < count($result);

// Get the first entitiy
$first = $result->first(); // $first === false if none

There are a number of things you can do to check if there are entities in your returned collection. See ArrayCollection for a full list of available methods.

// Is result empty?
$result->isEmpty();

// Is result count > 0?
0 < $result->count();
0 < count($result);

// Get the first entitiy
$first = $result->first(); // $first === false if none
我不是你的备胎 2024-12-09 22:11:27

如果 getResult() 返回(即,如果它不引发异常),则 $result有效。 (它始终是结果数组;如果没有结果,则可以为空。)

如果发生任何错误(格式错误的查询、连接重置或其他任何情况),则使用 createQuery()getResult () 抛出异常。

If getResult() returns (i.e. if it doesn't throw an exception), then $result is valid. (It's always an array of results; which can be empty if there was no result.)

If any error occur (malformed query, connection reset or anything else), ether createQuery() or getResult() throw an exception.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文