Tagged Questions

The Doctrine project is a collection of open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP.

learn more… | top users | synonyms

42
votes
9answers
4k 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 ...
31
votes
7answers
12k views

PHP ORMs: Doctrine vs. Propel

I'm starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need to make a choice.... I was wondering if more experienced people out there have ...
25
votes
1answer
990 views

Different inheritance types in the same schema

I'm using Doctrine 1.2 on a symfony project, and I'm considering mixing concrete and column aggregation inheritance types in my schema: column aggregation lets me query in a parent table and get both ...
22
votes
4answers
5k views

Doctrine 2: default value

am i missing something? how do i set default value in doctrine 2?
20
votes
2answers
1k 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) ...
18
votes
5answers
6k views

Why doesn't MySQL support millisecond / microsecond precision?

So I just found the most frustrating bug ever in MySQL. Apparently the TIMESTAMP field, and supporting functions do not support any greater precision than seconds!? So I am using PHP and Doctrine, ...
15
votes
2answers
896 views

PHP doctrine 1.2 ORM - polymorphic queries with class table inheritance

I'm experimenting with the Doctrine ORM (v1.2) for PHP. I have defined a class "liquor", with two child classes "gin" and "whiskey". I am using concrete inheritance (class table inheritance in most ...
14
votes
1answer
895 views

Generated Doctrine models respect case, but generated Yaml does not

Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected. I am generating models from the db (MySQL 4) using: Doctrine::generateModelsFromDb($pathToModels); Then ...
13
votes
3answers
611 views

Redbean vs Doctrine

I found RedBean today on StackOverflow and was wondering when/whether to use it instead to Doctrine. I have read a lot about Doctrine and was just starting to use it. Even if it's working now I think ...
12
votes
2answers
2k views

When should use doctrine ORM and when zend-db-table?

In terms of project scale, doctrine vs zend-db-table speed and performance, when should I use doctrine inside Zend project, and when zend-db-table?
12
votes
5answers
10k views

Using Raw SQL with Doctrine

I have some extremely complex queries that I need to use to generate a report in my application. I'm using symfony as my framework and doctrine as my ORM. My question is this: What is the best way ...
11
votes
3answers
4k views

what is doctrine hydration?

I've read about hydration in doctrine's documentation but I still can't understand what it is. Could someone please explain?
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 ...
10
votes
7answers
6k views

Zend Framework 1.11 with Doctrine 2 Integration

Could someone explain in detail how to integrate Doctrine 2 and Zend Framework 1.11?
10
votes
4answers
7k views

Zend Framework 1.9 and Doctrine Integration

I'm trying to setup Zend Framework and Doctrine. There is this previous discussion with ZF 1.8 http://stackoverflow.com/questions/973259/integrate-doctrine-with-zend-framework-1-8-app That ...
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 ...
8
votes
1answer
461 views

Symfony2: how to get all entities of one type which are marked with “EDIT” ACL permission?

The title already says it: can someone tell me how to get all entities of one type which are marked with "EDIT" ACL permission? I would like to build a query with the Doctrine EntityManager.
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
2k views

Symfony2 entityManager in model

I'm going to use entity_manager in my model. But entity_manager is only available in controller: throw $em = $this->get('doctrine.orm.entity_manager'). So, I have to define model methods with $em ...
8
votes
1answer
799 views

Why should I use Doctrine over Zend_Db?

I use Zend_Db in some project, I discover Doctrine there is a while but never actually used it. What are the advantage of Doctrine over Zend_Db ? What are the benefits to use Doctrine ? By the way, ...
8
votes
2answers
3k views

doctrine: QueryBuilder vs createQuery?

in doctrine you can create DQL in 2 ways: QueryBuilder: $query = $em->createQuery('SELECT u FROM MyProject\Model\User u WHERE u.id = ?1'); EntityManager::createQuery $qb->add('select', 'u') ...
8
votes
5answers
1k views

How to use less memory while running a task in Symfony 1.4?

I'm using Symfony 1.4 and Doctrine. So far I had no problem running tasks with Symfony. But now that I have to import a pretty big amount of data and save them in the database, I get the infamous ...
8
votes
6answers
4k views

Doctrine query memory usage

Doctrine appears to be taking well over 4MB of RAM to execute a single, simple query: print memory_get_peak_usage()." <br>\n"; $q = Doctrine_Query::create() ->from('Directories d') ...
7
votes
2answers
168 views

Standalone user management library that supports Doctrine ORM?

I can't find a standalone system that I can use for user management (authentication,authorization, register, password reminders...). The closest it gets is using Symfony and FOSUserBundle but because ...
7
votes
2answers
137 views

Doctrine 1.2 hydration fails with HYDRATION_RECORD, but works with HYDRATION_ARRAY

I have a code that runs perfectly with Doctrine_Core::HYDRATION_ARRAY, but crashes with Doctrine_Core::HYDRATION_RECORD. The page is loading for about two minutes and shows standard browser error ...
7
votes
2answers
204 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
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 ...
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.*') ...
7
votes
2answers
607 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?
7
votes
4answers
2k views

How to page Doctrine2 results

I cant find Doctrine_Pager in Doctrine2 and really need a way to page my query results. Is there a way to use some alternative pager (Pear, Zend)? Please post some example code as well if solution is ...
7
votes
1answer
3k views

problem understanding relation mapping in doctrine 2

I read official documentation and tons of threads but still do not find solution for my situation. My case is very basic. I have 2 entities: comments and keywords for them. One comment can have many ...
7
votes
3answers
2k views

Integrating ZF/Doctrine2: Where do i put my Models/Entities & Proxy classes

if i do integrate Zend Framework 1.10 with Doctrine 2 where do i put my Doctrine Models/Entities and Proxies? i thought of the /application or the /library directories. if i do put in the /library ...
7
votes
3answers
2k views

how to define current timestamp in yaml with doctrine

I tried the following yaml code: columns: created_time: type: timestamp notnull: true default: default CURRENT_TIMESTAMP In the outputted sql statement, the field is treated as ...
7
votes
4answers
6k views

Iterate Doctrine Collection ordered by some field

I need something like this: $products = Products::getTable()->find(274); foreach ($products->Categories->orderBy('title') as $category) { echo ...
7
votes
1answer
691 views

Doctrine and Zend_Form Validation

I am using Zend Framework and Doctrine on a project and was wondering if anyone can suggest a good way to integrate Doctrine's validation with Zend_Form. I'm trying to avoid code duplication.
7
votes
2answers
3k views

implementing “update if exists” in Doctrine ORM

I am trying to INSERT OR UPDATE IF EXISTS in one transaction. in mysql, I would generally use DUPLICATE KEY ("UPDATE ON DUPLICATE KEY".) I'm aware of many solutions to this problem using various ...
6
votes
1answer
420 views

Doctrine 1.2 auto-join i18n?

I would like to extend the i18n behavior, so that it joins the translation table automatically, on any type of query (DQL, relations, getTable). Additionally it needs to define the default language ...
6
votes
1answer
3k views

Doctrine 2 ManyToMany cascade

Is it possible in Doctrine 2 to create two objects that are many to many related and call persist only on one of them to save both? User entity: /** * Owning Side * * ...
6
votes
2answers
1k views

Preventing Doctrine's query cache in Symfony

In my Symfony/Doctrine app, I have a query that orders by RANDOM(). I call this same method several times, but it looks like the query's result is being cached. Here's my relevant code: $query = ...
6
votes
4answers
232 views

Using ORM classes directly from the controller in MVC, bad practice?

I've recently delved into using an ORM in my CodeIgniter application and one i've gone for is Propel. Now this gives me the power to basically use Propels classes as the 'Model' but is this bad ...
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
6
votes
5answers
3k views

Symfony Doctrine Migration - Add new enum column

Can anyone please tell me how can I add a new column of type enum to my schema in order to implement a Doctrine Migration? Thanks in advance, Best regards!
6
votes
3answers
1k views

Doctrine listener - run action only if a field has changed

How do I check if field has changed? I'd like to trigger an action in preSave() only if specific field has changed, e.q. public function preSave() { if ($bodyBefore != $bodyNow) { ...
6
votes
1answer
663 views

PHP Doctrine Inheritance

I'm reading through the Doctrine documentation but I can't find a way to implement the type of inheritance I want to use. I would like to set up a hierarchy like so: Node -> Something -> ...
6
votes
2answers
892 views

Symfony difference between <ModelName>.class.php and <ModelName>Table.class.php

Cuold someone explain me the difference between the Doctrine auto generated files .class.php and Table.class.php? For example in the Jobeet tutorial there's JobeetJob.class.php and ...
5
votes
2answers
395 views

Symfony2 Doctrine query

Hi stackoverflow friends I'm new in symfony2 , I don't know how to write a below query in symfony2 using createQuery() select * from Post inner join Category on Post.category_id=Category.id inner ...
5
votes
1answer
78 views

Using forbidden column names in doctrine 1.2

I'm using postgresql database. I have table with column called "from" (I can't change it). Sql insertion query generated by doctrine are incorrect, because column name "from" should be closed by ...
5
votes
2answers
233 views

Convert Doctrine 1 schema to Doctrine 2 entities?

A few months ago there was a command to convert a doctrine 1 schema file to doctrine 2 entities, however, this command no longer exists. I've just start using the Symfony2 RC1. Is there a reason it ...
5
votes
1answer
275 views

Doctrine 1.2 class table inheritance workaround?

ok, first of all, I know this is not possible with 1.2., that is why I'm looking for a workaround. And no, unfortunately I can't use Doctrine 2, because my shared hosting server is stuck at PHP ...
5
votes
3answers
791 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 ...

1 2 3 4 5 46