Doctrine2 Doctrine 2.0 is a PHP (5.3.0+) ORM. While Doctrine 1.2 uses the Active Record pattern, Doctrine 2.0 uses the Data Mapper pattern. The Doctrine project is a collection open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP. ...
45
votes
9answers
5k views
Doctrine2: Best way to handle many-to-many with extra columns in reference table
I'm wondering what's the best, the cleanest and the most simply way to work with many-to-many relations in Doctrine2.
Let's assume that we've got an album like Master of Puppets by Metallica with ...
23
votes
4answers
5k views
21
votes
2answers
2k views
Doctrine 2 Inheritance Mapping with Association
NOTE : if what I want is not possible, a "not possible" answer will be accepted
In the Doctrine 2 documentation about inheritance mapping, it says there are 2 ways :
Single table inheritance (STI)
...
17
votes
1answer
522 views
How to set up Doctrine2 fixtures when testing with PHPUnit?
I'm trying to get started with Symfony2 and have been trying to set up automated testing for the model layer of my application. The Symfony2 book talks about unit testing for controllers but I can't ...
15
votes
2answers
429 views
Doctrine2 and MySQL Partitioning
Does anybody has experience of using partitioning feature in conjunction with the Doctrine2 library?
The first problem is that Doctrine creates foreign keys for association columns, anybody knows how ...
12
votes
1answer
357 views
Symfony2 + Doctrine2 is not caching results of joined entities
I am using Symfony 2.0.10 with Doctrine 2.1 and have rather simple query (see below), where I want to cache results with APC (version 3.1.7, enabled 1GB of memory for it) via useResultCache(true, 600) ...
12
votes
1answer
535 views
Doctrine table class inheritance when one subclass has no extra attributes
I'm having a problem with my mapping. I can't get it to work. I have an abstract base class like so:
/**
* @Entity
* @Table(name="actions")
* @InheritanceType("JOINED")
* ...
12
votes
1answer
2k views
Can you explain me what is a Proxy in Doctrine 2?
I just finished to read all the documentation of Doctrine 2, I started my own sandbox, I understood most of the principes, but there is still a question and I couldn't find any complete explanation in ...
11
votes
0answers
835 views
Doctrine 2 integration problems [closed]
The issue:
I'm developing my project using MVC pattern.
In order to build model I decided to use Doctrine 2 RC2.
For implement View and Controller I want to use Zend Framework 1.11.
While I've ...
10
votes
2answers
2k views
Doctrine2 findBy relationship object triggers string conversion error
Say I have two entities in Doctrine2 that are related to each other, Models\User and Models\Comment. If I do this in Doctrine 2.0.0...
<?php
// $em instanceof EntityManager, $user instanceof ...
9
votes
8answers
1k views
Symfony 2 or Symfony 1.4?
I am starting a new Symfony project that will be very important to my company. My experience is only with Symfony 1.4. and I have 3 months to complete the project.
The project should be around for ...
9
votes
3answers
6k views
Doctrine based authentication mechanism in Symfony2 project
I am working on a small Doctrine2-backed project using Symfony2 for the first time. Currently I'm struggling with the security component of symfony2, to be exact with the authentication mechanism ...
9
votes
4answers
2k views
Using EntityManager inside Doctrine 2.0 entities
I have 2 entities: Country (id, name) and Mapping (id, object, internalId, externalId).
Country and Mapping are not connected with associations (because Mapping has rows not only for country). I need ...
8
votes
0answers
315 views
Lazy Loading with Doctrine2 and Symfony2 using DQL
I have a tree structure with a parent field. Currently I am trying to get all parent nodes to display the path to the current node.
Basically I am doing a while-loop to process all nodes.
$current = ...
8
votes
5answers
2k views
Zend Framework - Doctrine 2 integration : where to store the EntityManager?
I am integrating Zend Framework and Doctrine 2.
The question is, in my controllers and view, in need to access the model. I can do all this through a single instance of the EntityManager.
Where do I ...
8
votes
2answers
537 views
Help with Dependency Injection in MVC app
Zend Framework/Doctrine 2 application.:
/app
/modules
/blog
/controllers
/BlogController.php
/domain
/entities
...
7
votes
1answer
1k views
DoctrineMongoDBBundle getting a fatal error in Symfony2
I'm following the directions here:
http://symfony.com/doc/2.0/bundles/DoctrineMongoDBBundle/index.html
I have installed deps:
#deps
[doctrine-mongodb]
git=http://github.com/doctrine/mongodb.git
...
7
votes
3answers
337 views
Best Practices for developing a multi-tenant application with Symfony2 and Doctrine2
I am working on an application that needs to support the multi-tenant model. I am using the symfony2 php framework and doctrine2.
I'm not sure the best way to go about architecting this ...
7
votes
2answers
216 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
3answers
284 views
Doctrine2 Or zend_db
I have used Zend_DB and I found it very good,but why some books and documentations using doctrine 2 over Zend_Db ? I am not that expert in ORM but is their some Functionality that the Zend_Db can do ...
7
votes
6answers
1k views
Cannot redefine class on 'require_once'
UPDATE:
I've abandoned CodeIgniter, and the desire to build a web interface around my database application from PHP, as there was no way of getting rid of this bug...
The Exception
I get this ...
7
votes
3answers
2k views
Should I use EAV model?
I'm am designing my database/domain for an eCommerce application and I'm having a hard time figuring out how to store products.
The website will sell a wide range of products, pens, thongs, tattoos, ...
7
votes
2answers
686 views
Checking for duplicate keys with Doctrine 2
Is there an easy way to check for duplicate keys with Doctrine 2 before doing a flush?
6
votes
3answers
436 views
Symfony2 & Doctrine - Get number of rows returned from datasource
I have the following code in my Symfony2 Repository Class...
$query = $this->createQueryBuilder('foo')
->where('foo.bar = :id')
->setParameter('id', $myID)
...
6
votes
2answers
405 views
Injecting dependency into entity repository
Is there a simple way to inject a dependency into every repository instance in Doctrine2 ?
I have tried listening to the loadClassMetadata event and using setter injection on the repository but this ...
6
votes
2answers
1k views
Zend Framework 2 + Doctrine 2
I would like to start developing with Zend Framework and I would like to use zf2. Since I use Doctrine 2, can you suggest some tutorials to help me to integrate it in zf2? Thanks!
6
votes
3answers
208 views
How should this Many-To-Many doctrine2 association be defined?
I have two Entities - Users & Challenges. A User can participate in many challenges and a challenge can have many participants (users). I began approaching this problem by creating a Many-To-Many ...
6
votes
3answers
119 views
Is there a way to know which objects and how many of them do i have in memory?
I have a php script that uses Doctrine2 and Zend to calculate some things from a database and send some emails for 30.000 users.
My script is leaking memory and I want to know which are the objects ...
6
votes
1answer
618 views
Unable to create table in MySQL using Doctrine and Symfony2
I am working with Symfony2 and Doctrine ORM using MySql .
After creating an Entity, I am not able to create the table. It throws an exception.
anu@anu-bridge:/var/www/Symfony$ php app/console ...
6
votes
1answer
116 views
How to specify what value is passed using a choice form field in Symfony2
I have the following code which displays all the available main pages that can be used when adding sub pages in my project:
$builder->add('subtocontentid',
'entity',
...
6
votes
1answer
494 views
Symfony2 ACL and pager/multiple entities filtering
I've seen examples of ACL to deal with one entity but none to deal with fetching multiple items - such as a list of posts that belong to an author. One (bad) suggestion was to fetch all the items and ...
6
votes
2answers
104 views
How do you store and display if a user has voted or not on something?
I'm working on a voting site and I'm wondering how I should handle votes.
For example on SO when you vote for a question (or answer) your vote is stored, and each time I go back on the page I can see ...
6
votes
1answer
433 views
Doctrine 2 and Zend 1.11 convert-mapping error..
I have a complex database design with views, relationship etc. We decided to switch to ORM from the standard Zend_db. I successfully integrated zend 1.11 and doctrine 2.1. All the tutorials out there ...
6
votes
2answers
388 views
doctrine 2 ODM preventing duplicate record
Doctrine NOOB here, trying to figure out how to prevent a duplicate record in an embed many property. I have a EmbededDocment like this:
<?
/**
* @EmbeddedDocument
*/
class Contact {
/**
* @Id
...
6
votes
2answers
2k views
On delete cascade with doctrine2
I'm trying to make a simple example in order to learn how to delete a row from a parent table and automatically delete the matching rows in the child table using Doctrine2.
Here are the two entities ...
6
votes
2answers
224 views
Reduce coupling in entities
I'm looking for an appropriate way to reduce coupling in a messaging bundle I'm writing for the Symfony2 framework, so that I can easily use it between applications.
Each instance of the Message ...
6
votes
1answer
868 views
Doctrine 2 subquery
I want to implement a subquery using the query builder but I'm not understanding the syntax. I'm dealing with a locations table that has entries that can be cities, states or zip codes depending on ...
6
votes
3answers
889 views
Doctrine 2, inserting an entity with associations, is there a way to just use the FK of the associations instead of retrieving the entity?
just getting started with Doctrine 2 and have a newbie question regarding inserting an entity which has associations. If I already have the FK's of the associated entities, is there a way to insert ...
6
votes
3answers
1k views
Is it worth using Doctrine 2 with Zend Framework?
I know that some users use Doctrine 2 instead of Zend_Db in Zend Framework. But I don't know why. Why is Doctrine2 better than Zend_Db and why Zend_Db is not good?
Thanks
6
votes
5answers
998 views
Doctrine 2 Whats the Recommended Way to Access Properties?
I remember reading that in Doctrine 2 models, I should not set properties/fields public. How then would you expose these fields? The sandbox used get*() & set*() methods. Is that the best idea? ...
6
votes
1answer
2k 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.
// ...
6
votes
3answers
4k views
Doctrine 2.0 integration into Zend Framework 1.10
can anybody help me how to nice integrate doctrine 2.0 into ZF 1.10? I found some application resources, but there was no complete solution. Many thanks
5
votes
1answer
90 views
Generating next sequence value manually in Doctrine 2
What would be the easiest way to generate nextval for some particular sequence with given name?
The annotation solution with specifying
* @ORM\GeneratedValue(strategy="SEQUENCE")
* ...
5
votes
4answers
200 views
How to use select box related on another select box?
How to use related select boxes in Symfony ?
Let's say, I have a select list containing compagnies and another containing employees of the selected company. How do I define those in Symfony?
I have ...
5
votes
2answers
57 views
Is there a way to modify the entity mapping configuration for doctrine outside the config file?
In my standard Symfony2-app I'm having a bunch of bundles with some entities. Some of these entities are not located in the standard folder the automapping of doctrine finds out (e.g. ...
5
votes
1answer
202 views
Symfony2 - doctrine2 batch processing
I have the following situation:
I need to create a large number of entities (Entity C) based on a pair of entities
Entity A (45)
Entity B (700000+)
Entity C (45 x 700000)
Entity D
So I decided to ...
5
votes
2answers
150 views
Are Doctrine2 repositories a good place to save my entities?
When I read docs about repositories, it is often to work with entities & collection but in a "read-only" manner.
There are never examples where repositories have methods like insertUser(User ...
5
votes
1answer
244 views
Symfony2 & Doctrine2 : Create custom annotations
I'd like to create a few custom annotations for an Entity class, i've come across this article on Doctrine2 however i'm unsure as to how to integrate this into my Symfony bundle, can anybody shed some ...
5
votes
3answers
254 views
Which ORM to use with Symfony2? [closed]
I'm starting a new project with Symfony2 and I'm not really sure which ORM to choose. I've heard some bad things about Doctrine2, especially when it comes to inheritance and DQL. It seems like Propel ...
5
votes
2answers
174 views
How to properly load DoctrineExtensions in Bisna?
I am trying to load some doctrine extensions but I get all sort of errors. So far this is what I have
In my ini:
autoloaderNamespaces[] = "DoctrineExtensions"
...