Tagged Questions
10
votes
5answers
5k views
Complex WHERE clauses using the PHP Doctrine ORM
I'm using the PHP Doctrine ORM to build my queries. However, I can't quite seem to figure how to write the following WHERE clause using DQL (Doctrine Query Language):
WHERE name='ABC' AND (category1 ...
7
votes
2answers
204 views
When would it be worth it to maintain an inverse relationship in Doctrine2?
In the Doctrine manual, under Constrain relationships as much as possible, it gives the advice "Eliminate nonessential associations" and "avoid bidirectional associations if possible". I don't ...
7
votes
1answer
1k views
How to specify null value in a Doctrine query?
I am using Doctrine 1.1 in Zend. I am trying to write a query that will return records that have a null value in a certain column.
$q = Doctrine_Query::create()
->select('a.*')
...
5
votes
2answers
4k views
Doctrine: Multiple (whereIn OR whereIn) query?
I'm having trouble crafting a fairly simple query with Doctrine...
I have two arrays ($countries, $cities) and I need to check whether database record values would match any inside either. I'm ...
3
votes
1answer
1k views
Better to use DQL for getting Column Count or Get Collection Then Count?
I am quite sure that DQL will be the way to go, but I am wondering if Doctrine, i am using Doctrine 2, has someway to return the row count. I won't be using the rows itself, I just want the count.
3
votes
2answers
5k views
Join Table On Self using Doctrine (DQL)
I'm attempting to join a table on itself using doctrine's DQL. The scenario is:
I have a table of product attribute values at is linked to a products table via a reference table. The product ...
2
votes
1answer
93 views
How to sort fields of a related (joined) table in query results?
Probably related more to SQL than to Dotrine itself.
I have two tables, specified in schema file roughly like this:
Project:
columns:
name: { type: string(255), notnull: true }
Task:
...
2
votes
1answer
94 views
Symfony 1.4/ Doctrine; n-m relation data cannot be accessed in template (indexSuccess)
I have a database with 3 tables. It's a simple n-m relationship. Student, Course and StudentHasCourse to handle n-m relationship. I post the schema.yml for reference, but it would not be really ...
2
votes
1answer
52 views
How can I specify HYDRATE_ARRAY in the table convenience methods?
With Doctrine 2, is there any way to specify HYDRATE_ARRAY when I use the convenience methods EntityRepository::find or EntityRepository::findOneById? Do I have to write my own DQL query, and use that ...
2
votes
1answer
251 views
Row Number in Symfony Doctrine Query
I am storing data for lap times in a database, the data consists of a distance, time, average speed and max speed.
I am trying to display a leaderboard which shows the top ten people in whatever ...
2
votes
3answers
352 views
Limiting a doctrine query with a fetch-joined collection?
I have a doctrine query that returns blog posts and their comments:
SELECT b, c FROM BlogPost b LEFT JOIN b.comments c
I would like to limit the results to 10 blog posts. According to the DQL ...
2
votes
5answers
714 views
How to return an empty Doctrine_Collection?
I've a method that returns a Doctrine_Collection, with a whereIn() clause :
public function getByValues($values)
{
if (!is_array($values))
throw new sfException('Wrong parameter type. Excepted ...
2
votes
3answers
1k views
Doctrine 2 DQL - how to select inverse side of unidirectional many-to-many query?
I have two classes - Page and SiteVersion, which have a many to many relationship. Only SiteVersion is aware of the relationship (because the site is modular and I want to be able to take away and ...
2
votes
1answer
490 views
Fetching doctrine nested set with one query
I am looking a way to fetch a nested set in one db query.
schema.yml
Category:
actAs:
NestedSet:
hasManyRoots: true
rootColumnName: root_id
columns:
name: string(255)
...
2
votes
2answers
2k views
DQL Query fails
I've got 2 tables in an MySQL DB, im using doctrine 1.2 and symfony 1.4.4
Installedbase and Spare
Installedbase:
ib_id
app_id
location
and
Spare:
spare_id
app_id
amount
Now i want to join the ...
2
votes
8answers
4k views
How can get unique values from data table using dql?
I am having a table in which there is a column in which various values are stored.i want to retrieve unique values from that table using dql.
Doctrine_Query::create()
...
2
votes
2answers
2k views
Doctrine ORM - Self join without any real relation
I'm trying to find related objects to one object by matching the objects tags. I've constructed a mysql query which will return the objects that match the most by counting the matching tags.
I'm new ...
2
votes
1answer
471 views
Access field in a many-to-many intermediate table with DQL in Doctrine
i have a model called ContentGroup and another called Content with a many-to-many relation between them.
The intermediate table has a field called Position, When i try to write a DQL query to obtain ...
2
votes
2answers
941 views
Doctrine Named Queries: Specifing limit on query call
Let's imagine something like this:
class MyTable extends Doctrine_Table
{
public function construct()
{
$q = Doctrine_Query::create()->from('MyTable t')
...
1
vote
1answer
77 views
Confused using DQL with Doctrine2 entities and Zend framework
I have 4 entities : Country, Region, Province, Town.
<?php
namespace Entities;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @Entity (repositoryClass="Repositories\Region")
* ...
1
vote
1answer
59 views
DQL query with joining table and two join
I have 2 entity:
/**
* @ORM\Entity
* @ORM\Table(name="users")
*/
class User
{
/**
* @ORM\ManyToMany(targetEntity="Myapp\UserBundle\Entity\Group")
* @ORM\JoinTable(name="user_groups",
...
1
vote
1answer
58 views
Is it possible to export a CSV file with Doctrine?
Since there is no OUTFILE capabilities with Doctrine as far as I can tell, how would one export a query as a CSV file?
In MySQL, for example, the query would be:
SELECT * INTO OUTFILE 'file.csv'
...
1
vote
1answer
42 views
Use a Doctrine association table in a DQL query or equivalent
(Probably the solution for my problem is simple, but I've been searching for over an hour and I still haven't found anything.)
I have two entities, X and Y, with a bidirectional relationship between ...
1
vote
1answer
116 views
DQL Query with Associations?
I am working on a webapp that has three entities: User, Project, and Todo.
Every Todo has a many-to-one relationship with Projects.
Todos also have a many-to-many relationship to Users.
What I am ...
1
vote
1answer
130 views
Doctrine DQL dynamic ORDER BY parameter
Im trying to pass the ORDER BY column as a parameter in DQL, like below:
$this->em->createQuery("SELECT t FROM Entities\Topic t ORDER BY :order")
->setParameters( array('order' => ...
1
vote
1answer
94 views
How do you view a DQL query prepared query at runtime?
function get_event($id){
$query = $this->em->createQuery('SELECT e.name,e.date, e.time, e.venue, e.venueaddress,e.parish,e.genre, e.entryprice, e.phone, e.specialguests,
...
1
vote
2answers
144 views
Escaping backslash in namespaces with DQL (Doctrine 2)
I'm a bit confused about writing queries in DQL.
From the official documentation:
$query = $em->createQuery('SELECT u FROM MyProject\Model\User u WHERE u.age > 20');
Why the backslash of the ...
1
vote
1answer
336 views
How to make an insert query in DQL
I'm working with symfony and I would like to know how I can do a simple insert using the doctrine:dql task.
./symfony doctrine:dql "<what should I put here?>"
1
vote
3answers
213 views
Join and count in DQL
I have a MySQL command and I cannot find the equivalent in DQL. I am trying to fetch the list most commented posts. Here is the MySQL command :
SELECT posts.id, COUNT(comments.id) AS num
FROM posts
...
1
vote
0answers
490 views
Doctrine 2.0 DQL concat parameter problem
Here is my code:
$query = $this->em->createQuery("select t.name,(select count(v) from Entity\Vacancy v where v.tags like '%t.name%') as weight from Entity\Tag t");
The problem:
in quoted ...
1
vote
2answers
89 views
trouble writing a dql query
I'm using a plugin to add tags to the contents of my database, and I'm having some difficulties in writing the following query :
I want the list of tags that are tagged to at least one published ...
1
vote
1answer
464 views
How to find by referenced document in Doctrine ODM with MongoDB?
I have one document in my "params" collection like this:
{
"_id": ObjectId("4d124cef3ffcf6f410000037"),
"code": "color",
"productTypes": [
{
"$ref": "productTypes",
"$id": ...
1
vote
1answer
226 views
What's “wrong” with my DQL query?
I have the following SQL query:
select bank.*
from bank
join branch on branch.bank_id = bank.id
join account a on a.branch_id = branch.id
join import i on a.import_id = i.id
It returns exactly what ...
1
vote
1answer
338 views
Doctrine: Bind IN parameters
I was wondering if it is possible to bind an array of integers as a parameter, so I could do something like this?
$q = Doctrine_Query::create()
->update('blah c')
...
1
vote
1answer
183 views
Doctrine DQL and Namespaces (relative only?)
i noticed that if i try to do soemthing like
$query = $em->createQuery('SELECT u FROM \Application\Entities\User u');
i get
[Semantical Error] line 0, col 14 near ...
1
vote
2answers
301 views
Using virtual fields in Doctrine_Query
Is there a way to insert logic based on virtual fields into a Doctrine_Query?
I have defined a virtual field in my model, "getStatus()" which I would ultimately like to utilize in a Where clause in ...
1
vote
1answer
654 views
nesting conditions with DQL
Now that I've read all the DQL docs I still have some doubts, I'm
trying to do some nested condictions in my DQL however playing around
with DQL I can't seem to be able to archive them
To make myself ...
1
vote
2answers
1k views
Exclude rows with Doctrine ORM DQL (NOT IN)
I'm building a chat application with codeigniter and doctrine.
Tables:
- User
- User_roles
- User_available
Relations:
ONE user have MANY roles.
ONE user_available have ONE user.
Users available ...
1
vote
4answers
1k views
Can anybody explain me this error
I am firing a update query. Its working for one page and not working on other one. Can anybody take a look. thanks
<br />
<b>Fatal error</b>: Uncaught exception ...
1
vote
2answers
457 views
Doctrine - filter by foreign agregate value
how can i use result of Agregate function in where in Doctrine?
For example i want to know user with silly much numbers.
SELECT u.name, COUNT(p.id) AS users_phonenumber_count
FROM users u
...
1
vote
2answers
3k views
Cumulative DQL with Doctrine
Im having a hard time working out a proper DQL to generate cumulative sum. I can do it in plain SQL but when it comes to DQL i cant get hold of it.
Here is how it looks in SQL:
SELECT s.name, ...
1
vote
1answer
740 views
Doctrine - own postgres function
how can i call my own function stored in postgres DB, while i am selecting data throught
Doctrine_Query::create()
->select('schema.my_function(id)')
0
votes
1answer
29 views
Doctrine 2.1 DQL - Many-to-many query multiple values - Item in multiple categories?
This may seem like a rudimentary request, but I can't seem to get it to work, so I'm either missing something stupid, or am not understanding how it should be done. Thanks in advance.
I have two ...
0
votes
1answer
27 views
Doctrine 1.2 - Unknown record property / related component in a DQL with only 1 table envolved
I'm trying to execute this DQL:
$q = Doctrine_Query::create()
->select('*');
->from('Clientes c');
$retorno = $q->execute();
My BaseClientes.php:
// Connection Component Binding
...
0
votes
0answers
35 views
how to write inner join query in DQL(DOCTRINE) for select inside select
i want to write this SQL query in DQL (DOCTRINE)
select <cols> from profile INNER JOIN (
SELECT <primary key cols> FROM PROFILES
WHERE x.sex='M' ORDER BY rating LIMIT 100000,10
) AS x ...
0
votes
1answer
43 views
Doctrine DQL, class table inheritance and access to subclass fields
I have a problem with a DQL query and entity specialization.
I have an Entity called Auction, which is ONE-TO-ONE relation with Item. Item is a superclass for Film and Book. I need a query that ...
0
votes
0answers
47 views
Using multiply in doctrine DQL Order by clasuse
I am using doctrine 2.1 DQL
and i want to get a table data with order-by like this:
SELECT u FROM User u ORDER BY u.s * u.t
s and t are two mapped column fields on User.
But i am getting ...
0
votes
1answer
54 views
Doctrine Foreign Key Issues Symfony
I'm getting a list of 'team' entities where each 'team' entity has two foreign keys to a 'user' entity. When a 'team' entity is created from a query, the entity will also end up containing all data ...
0
votes
1answer
115 views
Doctrine Query order by sum
I have a query where i want to order for a subselect which is an addition
$this->queryObj = Doctrine_Query::create()
->select('l.*')
->addSelect('(SELECT count(*) FROM LeagueMatch m ...
0
votes
1answer
100 views
Symfony2/Doctrine DQL QueryException
So I'm attempting to do a query on a table that holds two foreign keys. This table basically sets a specific userID to be an "admin" of a specific zoneID in our application my DQL is this:
'SELECT z, ...