Doctrine Query Language (DQL) is an Object Query Language created for helping users in complex object retrieval.
0
votes
0answers
17 views
How to filter many-to-many associations in a symfony2 entity form field using the query_builder option?
i have 3 tables :
-Category
-CategoryAttribute
-Attribute
so the relationship here between Category and Atribute is ManytoMany.
For my Case , i want to link each Category to a list of attribute so i ...
0
votes
0answers
6 views
Doctrine2: Repositories/Tables saved/cached in php file
my question is about the possibility to cache the entries of database tables in pure PHP files, e.g. as arrays.
Imagine the following DQL query
SELECT * FROM tableA a
JOIN a.tableB b
JOIN b.tableC c
...
0
votes
0answers
21 views
DQL INNER JOIN with Zend Framework 2 / Doctrine 2
With this SQL-Statement, i can fetch the latest messages from all users:
SELECT m1.*
FROM message AS m1
INNER JOIN user
AS u1
ON m1.sender_id = u1.user_id
INNER JOIN (
SELECT ...
0
votes
1answer
16 views
Query birthdays of the day with Doctrine ORM
With raw SQL I habitually do the following:
SELECT * FROM users WHERE MONTH(birthday) = 11 AND DAY(birthday) = 17.
But these MONTH() and DAY() functions does not work with all databases =/
So what ...
0
votes
1answer
25 views
How i can use full outer join in symfony2 by query builder?
I want to use full outer join by queryBuilder function. for left join i used this code:
$qb = $qb->select('person')
->from('S118EbrahimiBundle:PersonEntity', 'person')
...
0
votes
1answer
20 views
how to do a join in doctrine with createQuiry or DQL
What i want is to do is this query in doctrine :
SELECT *
FROM `reservation`
JOIN res_chauf ON reservation.reservation_id = res_chauf.reservation_id
WHERE res_chauf.chauffeur_id =1
in ...
0
votes
1answer
63 views
How to write this query in Doctrine2 ? (subquery + JOINs)
This is the query I want to implement using Doctrine2 :
SELECT d1_.codeLieu AS codeLieu1, d1_.nomLieu AS nomLieu2, d1_.lngLieu AS lngLieu3, d1_.latLieu AS latLieu4, m2_.libelleMention AS ...
0
votes
1answer
23 views
JOIN WITH entity.collection Doctrine 2
I've been trying a lot of different things but I can't seem to find a way to JOIN... WITH an entity's attribute as a collection.
Say I have users and contacts. Because of reasons, I want to make a ...
0
votes
2answers
37 views
Paginate issue with count in a query with group by
Ok I usually use a pagination code that counts the total pages, like this
$query = "SELECT COUNT(*) as num FROM $tableName WHERE `ganador2` = '1'";
$total_pages = ...
2
votes
0answers
45 views
Express query using doctrine query builder
I have the following query that I would like to convert to use doctrine's query builder.
SELECT
u.user_id,
u.username,
u.create_date AS join_date,
u.last_login_date,
u.membership_level,
...
0
votes
0answers
28 views
Retrieving all categories after searching (Doctrine 2, Zend framework 2)
I've a problem with my querybuilder. I've two entities (user and categories). It's a many to many relationship, so a user can have more categories, and categories can have multiple users. Doctrine ...
0
votes
0answers
26 views
doctrine update replace function
i use Doctrine in my Zend Framework project. i tried to update my entity with update command and replace SQL function (see below:)
$query = $this->_em->createQuery("update ...
2
votes
1answer
38 views
Mapping and DQL
I have 3 tables - user, area, and contacts. A contact can belong to a user or an area. A user can belong to many areas.
I want to pull all the contacts that belong to a user (as specifically defined ...
0
votes
0answers
10 views
How to implement a custom DQL function for an Oracle DB function that output mixed data types?
I need to create a custom DQL (specifically nvl function from Oracle DBs). nvl(variable1, value1). if variable1 is null, it would then give me value1. It outputs mixed values. So if value1 is a date ...
1
vote
1answer
47 views
Doctrine 2: Entity has no field or association named x
I've some troubles while using doctrine to do a simple request by DQL.
Can't find any error in my code, so I ask my question here.
Here is the dcotrine query I tried to execute :
...
-1
votes
1answer
33 views
DQL Doctrine query translation
I have my scores table where I have multiple scores for 1 user. What I am trying to do is to select all highest scores for each user.
I am trying to do the fallowing in Doctrine DQL:
SELECT ...
0
votes
1answer
33 views
Doctrine 2, ManyToMany search
I have 2 Doctrine tables that are linked with a ManyToMany relationship.
Table: entries
TabLe: tags
I would like to be able to find the entries that have multiple or one tag(s) matching every tags ...
0
votes
0answers
45 views
Doctrine2 & Symfony2 Join on many-to-many
I have User, Tags and Projects.
A User can choose many Tags. A Project can have many Tags. Quite simple.
Now I want to return the Projects that share the same Tags like a specific User.
In SQL it ...
0
votes
1answer
29 views
Retrieve all rows that were inserted today
I am trying to retrieve all rows that were inserted today (only DATE, not time) in my mysql db.
$query = $em->createQuery("SELECT md
FROM YtBundle:Mood md
WHERE ...
1
vote
3answers
66 views
Doctrine DQL greatest-n-per-group
Here are 2 tables of my Symfony2 project :
+-----------+ +----------------------------+
| EVENT | | PHOTO |
+-----------+ +------+-----------+---------+
| id ...
0
votes
1answer
46 views
Doctrine Multiple Join Query gives an error
I m writing a query in Doctrine 2.3.3, where i want to retrieve data from 4 different tables. Now i have written a query which works on single join. But when i write multiple join queries it shows an ...
0
votes
1answer
20 views
Doctrine query not returning the same result depending on the order of the join
I want to do one query, and I thought I could write it in the following two ways:
SELECT c, p
FROM MyBundle:Car c
JOIN c.person p
WHERE
p.name = :name
and
SELECT c, p
FROM ...
5
votes
2answers
102 views
Check if id exists in foreign table twice
After trying for a while I thought I'd try to ask here for a change.
I am trying to check if a person id exists in two tables, for one table it works like a charm, but if I try to check another table ...
0
votes
1answer
77 views
Doctrine 2 date in where-clause (querybuilder)
I've the following problem: I want a where-clause that checks if a user is active AND if he has the right date.
A user contains the following:
State
Startdate
Enddate
So, State should stay on 1, ...
0
votes
2answers
73 views
Doctrine DQL instance of for multi table inheritance entity
I have set up Doctrine multi table inheritance on my application - see below
/**
* @Entity
* @InheritanceType("JOINED")
* @DiscriminatorColumn(name="type", type="string")
* @DiscriminatorMap({
* ...
3
votes
1answer
55 views
Access to inherit class attribute from DQL in Symfony2
I have an abstract class Product and inherited class ProductWithRecurrency:
/**
* @ORM\Table(name= "product")
* @ORM\Entity(repositoryClass="Acme\StoreBundle\Entity\Repositories\ProductRepository")
...
1
vote
0answers
35 views
Remove extra layer of arrays from a DQL call or proper access in Twig
I have made the following DQL call:
"SELECT SUBSTRING(e.sDateStart, 1, 4) as year
FROM contrastBundle:Exhibition e
WHERE e.sDateStart < :dateStart
GROUP BY year
ORDER BY year DESC"
which ...
0
votes
2answers
55 views
Doctrine query Mysql Syntax Error with Left Join
Intro
I'm following this guide here and I'm stuck on the very last part: http://symfony.com/doc/2.0/cookbook/security/entity_provider.html
I'm trying to query from the account table and join the ...
3
votes
0answers
134 views
Symfony 2 / Doctrine user-defined DQL functions parameter have string length limit?
I created my custum DQL function for Doctrine DQL :
class Translate extends FunctionNode {
public $field;
public function getSql(SqlWalker $sqlWalker) {
$query = ...
-2
votes
1answer
167 views
Doctrine\ORM\Query\QueryException - Error: Expected end of string, got 'WHERE' [closed]
There is a function I'm using to get next photo in gallery:
$q = "SELECT i FROM GalleryModule\Image i WHERE i.id = (SELECT MIN(p.id) FROM GalleryModule\Image p WHERE p.id > :id ORDER BY ...
3
votes
2answers
79 views
DQL - Selecting multiple fields, but fetching only one - hiding fields from resultset
Given following DQL query:
SELECT
p,
(p.views * 0.1) + (p.likes * 0.9) as ratingPhoto
FROM
AppBundle:Photo p
ORDER BY
ratingPhoto DESC
My resultset will look like following:
...
2
votes
1answer
23 views
It makes sense to use prepare() with a DQL query?
Normally in my projects I use DQL queries for non-simple database statements. Is necessary or recommendable to use the prepare() function wit DQL queries?
I am researching about that, but in the ...
2
votes
1answer
99 views
return One-To-Many join results as arrays in an object
I have a table for posts and another table with reply posts. I have a One (post) to Many (reply posts) relation mapped in doctrine correctly. I can join the two and get what i'd expect, an array of ...
1
vote
1answer
33 views
Column comparison (upper)
I'm pretty new with Symfony and I would like to know how to proceed to compare a column with a string.
I'm using the QueryBuilder in a repository.
The equivalent WHERE clause in MySQL is :
WHERE ...
3
votes
2answers
172 views
Doctrine (Symfony 2.0.x) createBuilder one-to-many - no idea how to get the right Entities
I'm searching the net for hours now and can't find a soluting for the following (reduced) problem:
I have two entities in my Symfony2-project:
/**
* ...
-2
votes
2answers
59 views
Equivalence DQL (from SQL) [closed]
What would the equivalent of the following query in DQL?
SELECT
id,
value AS `nameColumn`
FROM table;
1
vote
2answers
160 views
Doctrine Query Builder not working with UPDATE and INNER JOIN
In my repository I have this query:
$qb = $this->getEntityManager()->createQueryBuilder();
$qb
->update('MyBundle:Entity1', 'e1')
->join('e1.Entity2', 'e2')
...
2
votes
4answers
66 views
Grouping array values before entering into database
I have a symfony app using doctrine2 and I have this array:
Array (
[0] => Array ( [id] => 7 [createdOn] => DateTime Object ( [date] => 2011-03-01)) ...
2
votes
1answer
62 views
how to get array length in a doctrine query?
i'd like to know how to get the length of an array in a doctrine query? i use postgresql that has an array type and many functions to hundle arrays but i didn't find anything equivalent in doctrine, ...
1
vote
1answer
91 views
How to filter a query result based on a date time column in symfony2 DQL
I have a query similar to this :
$em->createQuery(
'SELECT t FROM myTestBundle:User t WHERE t.userId = :username AND
t.tokenCreatedtime > (NOW() - INTERVAL 800 MINUTE)'
);
(NOW() - ...
0
votes
2answers
80 views
How to order by a computed value in DQL
I'm trying to order the results of my query by whether or not they match my original entity on a property. I could do this easily in mySQL with the following query:
SELECT * FROM table
ORDER BY prop ...
0
votes
1answer
68 views
Selecting Many-to-Many DQL in Doctrine 2.0
I have 3 entities Building, Area and Route with this many2many associations:
Building n:m Area
Building n:m Route
An Area and a Route have a property visible.
I have to extract a Building and it ...
1
vote
1answer
54 views
Doctrine Query, association ManyToOne
I have 2 entities:
Class A {
/**
* @ORM\ManyToOne(...)
*/
private $b;
/**
* @ORM\Column(name="date", type="date")
*/
private $date;
}
Class B {
/**
* ...
0
votes
1answer
12 views
Does Group by with order by work ion Dql?
I am trying to execute a DQL (Doctrine) query that retrieve the latest answers of different doctors.
we have table answer, member, Location (doctor table) and many other table connected to the doctor ...
0
votes
2answers
93 views
Doctrine2: DQL with parameters
I'd like to have sorting type as a parameter. So I wrote function
public function findInterval($pageNumber, $limit, $sortType) {
$query = $this->_em->createQuery('Select c from ...
2
votes
1answer
99 views
Doctrine 2 composite keys and DQL joins
I'm trying to filter out the children where the parent consists of a composite primary key, the parent is called subject and the children is courses:
Subject:
class Subject
{
/**
* @var ...
2
votes
1answer
69 views
Doctrine Paginator Iteration is an array of 1 object
I'm trying to use doctrines Paginate class to fetch some tasks.
$qb = $this->getEntityManager()
->createQueryBuilder()
->select('DISTINCT task, priority, company, ...
1
vote
2answers
76 views
select 5 dates of a week
I have this table, Lineas (id, date, proyect_id, hours) and I want to select a sum of hours by date into a week. For example I need this output for dates between 01/01/2013 and 05/01/2013:
Proyect ...
0
votes
1answer
66 views
Invalid PathExpression while trying to do a query
I don't know what more I can try.
I'm getting this error:
[Semantical Error] line 0, col 10 near 'idEntrada FROM': Error: Invalid PathExpression. Must be a StateFieldPathExpression.
This is my ...
0
votes
2answers
41 views
Check how many entries are in table by date
Im trying to create a specific query.
E.g
i have table with events:
id | start | end
-----------------------------------------
1 | 10-08-2013 12:00 | 10-08-2013 14:00
2 | ...


