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
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.*') ...
4
votes
2answers
436 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
408 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
386 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") ...
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
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
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
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
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
2answers
460 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
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
938 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
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
38 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
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
91 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
1answer
52 views

How to return object from a DQL query?

I have written a DQL query in Doctrine 2: $qb->select('r.position') ->from('\Entities\Races', 'r') ->where($qb->expr()->eq('r.entrantId', ':entrant_id')) ...
1
vote
2answers
134 views

DQL - fetching related entities

Normally I would just lazy load my entities but right now I need to create a DQL thats able to fetch nodes as an array. I have tried several queries but I can't get it to work, below is two example: ...
1
vote
1answer
336 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
2answers
299 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
651 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
455 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, ...
0
votes
1answer
26 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
57 views

PHP Doctrine querying inherited classes with discriminator map

In this example: http://www.doctrine-project.org/docs/orm/2.0/en/reference/dql-doctrine-query-language.html#single-table we see that SELECT e FROM Entities\Employee e WHERE e.name = 'test' ...
0
votes
0answers
50 views

handling a mixed result in doctrine 2.1

When I execute a dql like this: select e,c form Entities\Episodes e join e.tvchannel c and get the result like this: $episodes = $query->getResult(); I get all my tvepsiodes joined by the ...
0
votes
1answer
23 views

Doctrine dbl with LIKE and a parameter error

What am I dong wrong here? return $em->createQuery(" SELECT p FROM SomeBundle:Page p WHERE p.title LIKE '%?1%'") ->setParameters(array($q)) Gives me a Invalid parameter ...
0
votes
2answers
61 views

How can I write a DQL for these entities?

I have entities seen as DB screenshot: You can see the screenshot here-> http://imageshack.us/photo/my-images/830/asdsasda.jpg/ I want to bring an object array of TnModuleItem by giving a TnRegion ...
0
votes
0answers
317 views

How to access properties of a related entity in a DQL query (Doctrine 2)?

I have set up a many to one relationship between a schools entity and students entity, I've linked the two together using a manyToOne relationship; Students entity: /** * @var ...
0
votes
1answer
168 views

Doctrine Update query with a sub-query

I'm trying to execute a query, similar to the following one, using doctrine dql: Doctrine_Query::create() ->update('Table a') ->set('a.amount', ...
0
votes
1answer
133 views

specify key values for return $query->fetchArray()?

Using Doctrine, I'm doing a query kinda like this: $query = Doctrine_Query::create()->select('id,name')->from('people'); return $query->fetchArray(); It returns an object similar to the ...
0
votes
1answer
326 views

Doctrine 1.2 how to compare dates

How can i set a condition, in a where clause of Doctrine 1.2 ORM to specify Greater than date in DQL example Doctrine_Query::create() ->from('user u') ->where(?) ->execute(); ...
0
votes
1answer
98 views

How do I correctly specify model/table name in Doctrine 2 DQL query?

I've upgraded to Doctrine 2 in my Zend application. I have the following code in a controller: // get instance of entity manager $em = $this->_helper->Em(); // get instance of query builder ...
0
votes
1answer
152 views

DQL association error when run query

Im new in DQL and doctrine 2 so, please be patient. I have this query: select c, m from A10\CrmBundle\Entity\Crm c inner join c.irszam m on m.irszam = c.cim1irszam where c.kod = ?1 I get this error ...
0
votes
1answer
118 views

Is there a trick with Doctrine's Query Language to access object methods?

I have a few methods on my entity class (calculating time intervals between creation and deadline, etc.) that I'd like to order by in my DQL. I tried using __get to access the method as a property but ...
0
votes
2answers
580 views

Doctrine 2 QuerryBuilder vs Handcoded DQL - different results

I have Doctrine2 DQL query but I want to build it with QueryBuilder, I have noticed that produced DQL is somewhat different from the handcrafted one, and I'm wondering what am I missing here - maybe ...
0
votes
1answer
81 views

Getting object value in DQL

I have two entities - User and Subscription - where Subscription contains an instance of User (named user). I'm trying to get all Subscriptions for a given user id with the following query: SELECT ...
0
votes
1answer
440 views

dql query builder Doctrine 1.2

Is there easier way to build querys in doctrine then this. At this point there is only one parameter, but some case there could be like username, tagname, etc. Some of those could be null or empty. I ...
0
votes
1answer
125 views

What is the correct way to retrieve information from two tables using doctrine ORM

I am trying to perform a simple join on two tables and am having trouble finding the right syntax to use - I know i am missing something simple. From the 'users' table i need the id (working fine) ...
0
votes
1answer
202 views

Doctrine - encryption with dql listeners

I am attempting to encrypt certain database fields by adding a call to mysql AES_ENCRYPT (and AES_DECRYPT) using Doctrine DQL Hooks. for SQL SELECT's I have a preDqlSelect() in my ...
0
votes
1answer
130 views

Duplicate Array key in Doctrine result

For a website i'm building I need to check wether a location has contracts, these locations can have contracts linked directly to them or when there part of a larger organisation also have contracts ...
0
votes
1answer
177 views

DQL Update with relations

Following Models: class User extends Doctrine_Record { public function setTableDefinition() { $this->hasColumn ( 'iron', 'integer', 4 ); } public function setUp() { ...
0
votes
4answers
1k views

Check if hydrated doctrine result is NULL

I'm trying to check if a result in my DQL is NULL. I got the following DQL query: $q = self::createQuery("l") ->select('i.*, s.aantal, m.naam, c.cat_naam, a.app_id') ...
0
votes
2answers
624 views

Doctrine_Query update with float value

I need to increment User's balance, so I do: Doctrine_Query::create()->from('User')->update('balance', 'balance + 0.15')->execute(); And I got an error "Unknown component alias 0". I think ...
0
votes
1answer
98 views

What'd be a good pattern on Doctrine to have multiple languages

I have this challenge which consist in having a system that offers it's content in multiple languages, however a part of the data contained in the system is not translatable such as dates, ints and ...

1 2