Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
5k views

Doctrine - How to print out the real sql, not just the prepared statment?

We're using Doctrine, a PHP ORM. I am creating a query like this: $q = Doctrine_Query::create()->select('id')->from('MyTable'); and then in the function I'm adding in various where clauses ...
3
votes
2answers
63 views

Transparently executing SQL functions when loading/saving a field in Doctrine 2

I'm working with Doctrine2, and have a entity containing a string property that represents a WKT geometry: class Entity { /** @Column(type="string") */ protected $wkt; } I'd like to have ...
2
votes
1answer
432 views

Regex with Doctrine 2 query builder?

As per the title, how would one match on a regular expression with the Doctrine 2 query builder? Basically I'm trying to generate unique slugs. Here is my current implementation. I generate the ...
2
votes
0answers
128 views

Limit Clause While Fetching Child Records in Doctrine

I have two tables Entity and Message. as each entity can have many messages so it's like parent child relation. I dont want to use doctrine custom query so I am loading entity message like ...
2
votes
2answers
81 views

Problem with two requests on a table in one action

I have an action with two requests on an unique table. The results of the requests must be different. But, the result is the same for my two requests and it comes from my second request. // ...
2
votes
1answer
519 views

Doctrine 2 PlainValue expected

I'm having trouble executing a Doctrine DQL Query. This is the error it gives me. Doctrine\Common\Annotations\AnnotationException: [Syntax Error] Expected PlainValue, got 'integer' at position 13 in ...
1
vote
2answers
61 views

symfony 1.4 reading relation 1:n doctrine

I want obtain the relations with two tables. This is my schema.yml Oferta: columns: titol: { type: string(50), notnull: true } sub_titol: { type: text } data_inici: { type: date } ...
1
vote
1answer
123 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
64 views

doctrine 2 query if product equals to multiple categories

$categories= array(3,20,24); $qb = $this->em->createQueryBuilder(); $qb->select('p') ->from('\Entities\Productss', 'p') ...
1
vote
2answers
797 views

Persisting selected entities in mapped relationships in Doctrine 2

I am trying to map a relationship between 2 MySQL tables in Doctrine 2. My owning entity is 'Campaign', it joins to 'Channel'. When a campaign record is saved, it must contain a channel id. When a ...
1
vote
1answer
914 views

How to Hydrate custom query in Symfony/Doctrine

After performing a custom query using $DBH = Doctrine_Manager::getInstance()->connection()->getDbh(); $PDO = $DBH->prepare("mysql query"); $PDO->execute(); How do I return model ...
1
vote
1answer
179 views

Doctrine collection altered by other fetch query

I'm new to Unit testing in symfony, and i'ts being pretty annoying, since I experienced one problem, which took me 1 hour to identify. Hopefully, you guys will know why this happens. So I'm testing ...
1
vote
1answer
384 views

Serialize a PHP object (Doctrine Query)

I'm trying to serialize a Doctrine_query object in Symfony : var_dump(serialize($this->pager->getQuery())); The result is : string(2) "N;" What am I doing wrong?
1
vote
1answer
267 views

Why will Doctrine ORM will not create SQL query for my 1-to-many model?

I know this has to have an easy answer, but I cannot figure it out. After tears, I am hoping someone here can help. Here is my YML model: Identity: columns: id: type: ...
1
vote
0answers
283 views

What is the most efficient approach to fetch category tree, products, brands, counts by subcategory in Symfony + Doctrine

Symfony 1.4 + Doctrine 1.2. What is the best way to minimize the number of queries to retrieve products, subcategories of current category, product counts by subcategory and brand for the result set ...
1
vote
1answer
485 views

Doctrine DQL execute passing params

I used this DQL in Doctrine $q->update('product') ->set('quantity','?') ->where('id=?'); $q->execute(array(20,5)); I check the server for the query and this the generated sql ...
1
vote
2answers
907 views

Doctrine - Can I use real SQL (not DQL) in a ->andWhere()?

I'm using Doctrine, a PHP ORM. I have created a Doctrine Query, and I need more control. So I've started to use the ->andWhere(...) methods to add new where clauses. However I need to do a subquery ...
0
votes
0answers
7 views

Master-slave connections with Doctrine 1.2

I've read and implemented this: http://www.doctrine-project.org/projects/orm/1.2/docs/cookbook/master-and-slave-connections/en However, it only accounts for when you are using Doctrine_Query or ...
0
votes
0answers
24 views

Doctrine query missing rows

I'm a bit stuck with this I have this query: $select = Doctrine_Query::create()->select('SUM(p.amount * p.cost) as total') ->addSelect('(SELECT u.username from sfGuardUser as u WHERE ...
0
votes
2answers
39 views

Doctrine update query with LIMIT

I would like to do an update-query with a LIMIT like that: UPDATE anytable SET anycolumn = 'anyvalue' WHERE anothercolumn='anothervalue' LIMIT 20 How is this possible with doctrine 2.1 ?
0
votes
1answer
34 views

How to set literal string values in Doctrine Update queries?

For doctrine 1.2, I find plenty of examples like these: $q = Doctrine_Query::create() ->update('mytable') ->set('amount', 'amount+200') ->whereIn ('id', $ids); What I want to do however is ...
0
votes
0answers
29 views

How to find last modified time for a table in doctrine

I want to find the last modified(updated/inserted/deleted a row) time for a table using dctrine query. Can any please suggest me how to do that? Thanks in advance.
0
votes
1answer
18 views

get categories titles and elements of only that categorie - symfony

I want to show in an indexSuccess.php categories titles and the elements of that categories. These are my two tables: SgpsCategories: columns: description: { type: string(255), notnull: true } ...
0
votes
0answers
32 views

doctrine query 2nd order not applying

i have this : $newquery = $this->_em->createQuery("SELECT c,a FROM NewsCategory c LEFT JOIN c.news a ORDER BY a.addedtime DESC, c.position ASC"); works but the 2nd order not applying i ...
0
votes
1answer
108 views

How Doctrine determines default database connection?

I am using Zend 1.11 with Doctrine 1.1.4. My application uses multiple databases. In my bootstrap.php file, I've set up the details for two databases; $dbs = array( ...
0
votes
0answers
397 views

sfDoctrinePager with custom query returned only one row

I've tried to combine my Doctrine_Query and sfDoctrinePager, but when I fetch the results, it's always return one row (when I run the generated query in my database it was normal) this is my code: ...
0
votes
0answers
128 views

Doctrine Query from sqlParts array

Sorry, for maybe, stupid question. Situation: I have one instance of Doctrine_Query. and array of sqlParts from this query: $sqlParts = $stmt->getSqlParts(); Is it possible to create new ...
0
votes
1answer
348 views

Ordering by a generated field in Doctrine 1.2

I'm using a preDqlSelect() callback to add a "virtual field". But the validation of my query must be happening before the callback get fired because I can't order by that new field when I query that ...
0
votes
1answer
134 views

how to get rid of primary column in doctrine queries

Doctrine always includes an ID column in a query, for example: $new_fees = Doctrine::getTable('Stats')->createQuery('s') ->select('s.sid')->where('s.uid = ?', $this->uid) ...
0
votes
1answer
302 views

Retrieve related objects with Doctrine and Symfony

I searched for a long time, but I don't manage to retrieve two related object in one query. I am using Doctrine and Symfony (uses Doctrine by default). Here is a part of my schema.yml: Member: ...
0
votes
1answer
178 views

Get Doctrine Relationships in DQL

I have three tables: Project: ... relations: User: local: authorId foreign: id Users: class: User local: projectId foreign: userId refClass: ...