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 ...
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") ...
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
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
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 ...
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
2answers
61 views

How to build a query involving several different tables with different relationships

I'm currently trying to write a query which involves 5 main tables, 2 of which are referring to a 3rd with foreign keys, but not relating to each-other... and one of the first 2 tables is the main ...
1
vote
3answers
210 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
560 views

Symfony2 query error (while the same works under Doctrine2)

I am using both Doctrine2 and Symfony2 but Symfony2 fails me at a task I am able to accomplish in Doctrine2 (the 'standalone' version). In Doctrine2: I have 2 classes, Outcome, Ticket as such: ...
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
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
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
82 views

Question mark DQL is not considered?

I have the following DQL query: $query = Doctrine_Query::create() ->select('p.genre') ->from('Profile p') ->where('sf_guard_user_id = ?', ...
0
votes
1answer
75 views

Doctrine query for authentication

Consider this query: $query = Doctrine::getTable('sfGuardUser') ->createQuery('u') ->innerJoin('u.Groups g') ->where('u.name = 'username') ->adnWhere('g.name ...
0
votes
1answer
279 views

Doctrine 2 DQL: Can I combine these queries into 1

I am trying to combine these queries into 1 # Get completed todos SELECT COUNT(t.id) from Application\Models\Todos t WHERE t.parent IS NULL AND t.todoList.project = :proj AND t.completedOn IS NOT ...
0
votes
1answer
203 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
131 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
2answers
2k views

Is this possible to join tables in doctrine ORM without using relations?

Suppose there are two tables. Table X-- Columns: id x_value Table Y-- Columns: id x_id y_value Now I dont want to define relationship in doctrine classes and i want ...
0
votes
4answers
150 views

How can i get in between rows in mysql query

I want to fetch intermediate rows from by database. Like for last 10 rows i will use limit : return Doctrine_Query::create() ->select('v.*') ->from('Video ...