Tagged Questions

Doctrine Query Language (DQL) is an Object Query Language created for helping users in complex object retrieval.

learn more… | top users | synonyms

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
203 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
1answer
1k views

doctrine2 dql, use setParameter with % wildcard when doing a like comparison

I want to use the parameter place holder - e.g. ?1 - with the % wild cards. that is, something like: "u.name LIKE %?1%" (though this throws an error). The docs have the following two examples: 1. // ...
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 ...
4
votes
2answers
440 views

Get random records with Doctrine

I wonder how to get a random number of Members from a Group, but I do not know what is the best way to do this, and I think ORDER BY RAND() is not the best alternative, as a Group can have more than ...
4
votes
1answer
410 views

Limit amount of records retrieved when using Doctrine DQL in Symfony2

I have the following query: $latestcontent = $em->createQuery(' SELECT c.title, c.content, c.lastedit, a.firstname, a.surname FROM ShoutMainBundle:Content c, ...
4
votes
3answers
389 views

Doctrine DQL Date as parameter problem

Hi there I got a DQL that works (I get all my event since the beginning) : DoctrineHelper::getEntityManager()->createQueryBuilder() ->select("u.surname, count(u.surname) as total") ...
4
votes
2answers
228 views

Is this the proper way to handle an ordered array with Doctrine2's WHERE IN expression?

Using Zend Lucene Search, I am returning a list of relevance-ordered IDs that map to blog records that I will fetch from the database. Is this the proper way of handling an array with Doctrine2's ...
3
votes
1answer
47 views

Restrict query results based on attributes of 1 item in 1-n association

I have an entity 'Order', and a one-to-many associated entity 'OrderStatus' (so 1 order can have many statuses). The current status of an order is defined by the last status that was added to that ...
3
votes
1answer
493 views

Doctrine 2 - How to use discriminator column in where clause

I was used discriminator column in where clause like this: //f = root entity $qb = $this->createQueryBuilder('f'); $qb->add('where', 'f.format = \'image\' OR f.format = \'text\''); I've got ...
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
311 views

Doctrine 2 DQL: Cannot reuse named parameter?

I find that I cannot do something like below, notice ':user' is used twice $query = $em->createQuery('select p from Application\Models\Project p WHERE p.owner = :user ...
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
27 views

Doctrine 2 JOIN error

I try to execute this query $qb = $this->_em->createQueryBuilder(); $qb->select(array('c', 'ld')) ->from('Model\Entity\Company', 'c') ...
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
128 views

how can i use now()?

$ php app/console doctrine:query:dql 'SELECT now()' [Doctrine\ORM\Query\QueryException] [Syntax Error] line 0, col 7: Error: Expected known function, got 'now' How can I manage to use ...
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
76 views

Doctrine 2: Recursively select all self-referenced associated entities (NestedSet)

I have defined a self-referenced entity: Category as shown in the docs. It basically creates a non-sortable tree. What DQL query should I perform that will select all of the parent, parent's ...
2
votes
2answers
79 views

DQL - extract year from datetime format

How do I extract distinct years from datetime format (00-00-0000 00:00:00)? I'm using Symfony 2 and DQL. In SQL it would be: SELECT DISTINCT extract(year FROM created_at) FROM news ORDER BY ...
2
votes
1answer
51 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
348 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
701 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
483 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
461 views

Doctrine 2 ORM problem setting parameters

I'm having a problem with a very simple query in Doctrine 2 ORM. I'm sure I've followed the docs to the letter, but it just won't work. I have this: $qb = $this->em->createQueryBuilder() ...
2
votes
1answer
278 views

Documentum Query -DQL

How can I form a DQL query to get the list of files excluding the virtual documents created (while adding reference to the file) in document um. Can any one please help me out.
2
votes
2answers
401 views

DQL-Documentum query

Can any one please provide a solution in Documentum Query Language to access the folder details of a file checked out from documentum if we provide the object_id of the corresponding file. Thank ...
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
939 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
31 views

Documentum user creation using Active Directory

Is there any way that we can programatically create a Documentum user by using Active Directory information? (I have very little knowledge on ADT and know that it stores user info thats all.)
1
vote
2answers
23 views

Doctrine 2 JOIN ON error

I try to execute this query in my CompanyRepository $qb = $this->_em->createQueryBuilder(); $qb->select(array('c', 'ld')) ->from('Model\Entity\Company', 'c') ...
1
vote
1answer
36 views

Symfony - error because of addslashes in DQL query

I do: $text = '%'.addslashes($text).'%'; $images = $this->getDoctrine()->getEntityManager() ->createQuery("SELECT img, cat, u FROM ...
1
vote
1answer
71 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
58 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
32 views

Can't use same parameter twice in custom function

I wrote a custom DQL function. In this function I use the same parameter twice: public function getSql(SqlWalker $sqlWalker) { $point1_lat = $this->point1_lat->dispatch($sqlWalker); ...
1
vote
1answer
106 views

Doctrine: Convert a createQuery query to createQueryBuilder

This is the current query that I have, and it works fine: $q = $this->_em->createQuery("SELECT s FROM app\models\Sub s LEFT JOIN s.case c ...
1
vote
1answer
56 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
41 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
39 views

Doctine 2 Restricting Associations with DQL

There seems to be an over sight in Doctrine 2.1 where it isn't easy to return a subset collection for an association. ...
1
vote
0answers
116 views

Doctrine DQL RIGHT JOIN?

Is it possible to do a RIGHT OUTER JOIN in Doctrine 2 DQL?
1
vote
2answers
146 views

Doctrine DQL JOIN

I have the following entities mapped with Doctrine 2: class Zone { /** * @ManyToOne(targetEntity="Zone", inversedBy="children") * @var Zone */ protected $parent; /** ...
1
vote
2answers
75 views

How to get Entities based on field values in another Entitiy in Doctrine2?

I have entity Product and entity Subcategory: Subcategory.php namespace Project\Entities; /** * Subcategory * @Entity * @Table(name="subcategories") * */ class Subcategory { /** * * ...
1
vote
1answer
143 views

createQueryBuilder IN clausule

I´m working with Symfony2 and I need to execute this SQL for example: select detformacion.* from detformacion left join formacion on detformacion.formacion_id = formacion.id ...
1
vote
1answer
112 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
127 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 2 3 4