Limit amount of records retrieved when using Doctrine DQL in Symfony2(在 Symfony2 中使用 Doctrine DQL 时限制检索的记录数量)
问题描述
我有以下查询:
$latestcontent = $em->createQuery('
SELECT c.title, c.content, c.lastedit, a.firstname, a.surname
FROM ShoutMainBundle:Content c, ShoutMainBundle:Admin a
WHERE c.author = a.id
ORDER BY c.lastedit ASC'
);
我需要做的是限制从此查询返回的记录数量.但是,当我将 LIMIT 10 添加到 SQL 查询时,它返回此错误:
What I need to do, is limit the amount of records returned from this query. However, when I add LIMIT 10 to the SQL query, it returns this error:
错误:预期的字符串结尾,得到LIMIT".
Error: Expected end of string, got 'LIMIT'.
所以,我看了一下,发现您可以将 ->limit(10)
添加到代码中(在查询之后).但这会引发这个 PHP 错误:
So, I had a look and found that you could do add ->limit(10)
to the code (after the query). But this then throws up this PHP error:
Fatal error: Call to undefined method DoctrineORMQuery::limit() in C:wampwwwsrcShoutAdminBundleControllerDefaultController.php on line 22
我做错了什么?
推荐答案
据我所知,目前没有像 LIMIT 这样的 DQL 声明.
There is no statement like LIMIT for DQL currently, as far as I know.
你必须使用 Query::setMaxResults().
这篇关于在 Symfony2 中使用 Doctrine DQL 时限制检索的记录数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Symfony2 中使用 Doctrine DQL 时限制检索的记录数量


基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01