mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-999: DQL always needs a FROM clause, should be changed #1246
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Jan 23, 2011).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user felicitus:
Sometimes a developer needs to issue a query without a FROM clause. This especially occurs using the QueryBuilder, when you may or may not have a table to select from, but call a stored procedure always.
Example:
The above query fails because the lexer expects T_FROM. If you replace (11) with a stored procedure, this example makes more sense.
One might argue about that you should use DBAL directly, but I disagree, because it always can happen that you end up in a situation like this:
@beberlei commented on GitHub (Dec 7, 2015):
This is not a supported use-case for DQL.