Doctrine 2.0 is a PHP (5.3.2+) ORM. While Doctrine 1.2 uses the Active Record pattern, Doctrine 2 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.

learn more… | top users | synonyms

0
votes
0answers
7 views

How to write a Doctrine2 delete query

How do i write a query DELETE FROM table WHERE id = 2 in doctrine2 in Zend ? $this->_em->getrepository(something\entitity\something\table)->remove()->where('id',2) ?
0
votes
0answers
4 views

Doctrine 2 MongoDB ODM i18n

I'm playing with Doctrine ODM, trying to make some i18n-able field in my Mongo document. This is what I want to achieve in Mongo: { "title": { "en": "Car", "eu": "Autoa" } } And ...
0
votes
0answers
6 views

MySQL to DQL - Doctrine

I am trying create a query in Doctrine and am having trouble. I have figured out the needed query in mysql but cannot seems to convert it over to DQL. Here is my MySQL query: SELECT * FROM (SELECT ...
0
votes
0answers
11 views

Target Entity Cannot be Found using ZF2

I am in a situation where i have created sort of 2 sub modules, what i was trying to achieve was mapping them using doctrine E.g i have a structure as follow: I have 2 modules named 1)Account ...
0
votes
0answers
9 views

Zend Framework 2 & Doctrine & a Form editing/creating assertion

I thought about this a long time, I just don't know whats the best way to do this. I'm having my Models defined by Doctrine 2 annotations. Now, my Users have a ManyToOne Assertion to a Group. For ...
0
votes
0answers
17 views

Many-to-many without join table

I have a Template and Comment table. Template has two fields ID and KEY, I can have multiple versions of a template with the same KEY but different ID. For example: ID 1 2 3 KEY 1 1 1 And a ...
0
votes
1answer
34 views

Many-To-Many + WHERE field <> value

I have "Post" entity with relation manyToMany /** * @ORM\ManyToMany(targetEntity="Core\CoreBundle\Entity\User", cascade={"persist", "remove", "merge"}) * ...
0
votes
1answer
23 views

Search only by time in DateTime field in Symfony2 and Doctrine

I use Symfony 2 and Doctrine. In my database MySQL, I have a field of type DateTime. In my Repository file, by using QueryBuilder, I would like to search in this table only by date (without time) and ...
0
votes
1answer
16 views

Why does my 'where in' Doctrine DQL query not return expected results?

I have the following DQL query: $queries_query = $this->_em->createQuery('SELECT q FROM \Entities\Query q INNER JOIN q.store s WHERE s.tvRegionId IN (?1)'); $queries_query->setParameter(1, ...
0
votes
0answers
22 views

is doctrine 2 comptatible with Zendframework 1.12

i want to install doctrine 2 on a zendframework 1.12. i read somewhere that doctrine 2 easy to configure Docrine 2 to Zendframe 2. however, i am not clear whether Zenframework 1.12 uses he same ...
0
votes
0answers
10 views

Doctrine 2 Inner Join Select

Following up this previous question: SQL add rows count from a second table to the main query I'm trying now to convert it to Doctrine2. Afaik, it's not possible to do this, without using native SQL ...
0
votes
0answers
11 views

SonataMediaBundle Usage with custom entities

I'm using Symfony2 with Sonata bundles (Sonata-Admin and Sonata-Media) to develop my CMS project. I setup my admin classes for my custom bundle and it's working well. I need to attach images into my ...
0
votes
0answers
3 views

Preloading Doctrine ODM referenced documents

I'm using Doctrine ODM (MongoDB) and I have something like the following Attendee document Answer document each Answer references one Attendee. (one-to-many relation) I do something like the ...
0
votes
0answers
19 views

PHP Pattern - how to retrieve collection of objects

Situation: There is simple User class which is Doctrine entity (I skipped comments to keep the code short): class User { protected $iUserId; protected $sName; } Question: How to retrieve ...
1
vote
0answers
26 views

how to save one-to-many relationships to the database using zend form and doctrine

I'm writing an application that uses Zend Framework 2 and Doctrine (both the latest stable version). There is much documenation (mainly tutorials and blog posts) that deal with saving doctrine ...
0
votes
0answers
15 views

Schedule DQL query after entities were persisted

Is there a way to schedule DQL in Doctrine2 to be executed after update and persistance of entities? I have the following scenario: I have entity A, which is associated with entity B1 (have field ...
0
votes
0answers
7 views

Integrity constraint violation: 1048 - doctrine 2 cascade persistence

My profile entity: <?php namespace Profile\Entity; use Doctrine\ORM\Mapping as ORM; /** * Profile * * @ORM\Table(name="author_profile") * @ORM\Entity */ class Profile { /** * @var integer * ...
0
votes
0answers
19 views

ZendFramework2 Doctrine2 Forms

I'm setting up a ZendFramework2 + Doctrine2 stuff, everything is working good, I've setted up the create form, but what I need is to handle de relationship of my tables... For example, main table is ...
1
vote
1answer
38 views

Programmatically modify table's schema name in Doctrine2?

I'd like to modify a table's schema/DB name at runtime as is possible with the table name, but the ClassMetadataInfo class does not appear to expose an interface to get/set this property. I can make ...
1
vote
3answers
37 views

Ordering date from n+1 to n-1 in Doctrine2

I requested this yesterday : SQL Ordering Data from row "n+1" to "n-1" But I'm using doctrine2 and in DQL, Case statement isn't available. So how could I do this in DQL ? Thank ...
1
vote
1answer
17 views

Doctrine Many to Many Insert

i have some promblem. i was research and try all suggest but no one work. and i end up with : Argument 1 passed to Entity\User::addCategories() must be an instance of Entity\Category, string ...
1
vote
0answers
32 views

How to sort Symfony2 form collection items

I have an entity Recipe with a form collection of steps assigned to. The user is able to sort the steps with drag and drop and some javascript. To save the new order I added a field step_number to ...
0
votes
1answer
17 views

Doctrine many-to-many association is not resolved

When i am using a Many-To-Many relationship in Symfony2 using Doctrine ORM i get the problem that my many-to-many relationship is not resolved. Example: Class A: /** * ...
0
votes
1answer
19 views

How to remove fields in child Entity?

I have an entity Image with lots of fields, and I want to create an entity Thumbnail which extends from Image, but with fewer fields. For example, I want to inherit path, but I don't want to inherit ...
0
votes
1answer
13 views

get the label through the foreign key

These are my table. My tables are User table id Name Sex 1 bob 1 2 taro 1 3 can 2 Sex table id label 1 male 2 female User.sex is foreign key of Sex.id What I want to get is like ...
0
votes
2answers
21 views

Doctrine 2 - entity have collection of another entities via key holder table

I want to implement this type of relationship: Class SimpleUser must have a "languages" class property which should contain list of all SimpleLanguage-s that are binded to the current user in the ...
2
votes
1answer
43 views

Integrating Doctrine with CodeIgniter

I have successfully installed the latest version of CodeIgniter and have basic MVC pattern working. The problem that I've noticed is that CI doesn't naturally allow for prepared statements when it ...
0
votes
0answers
11 views

Loading a class with no defined namespace with Doctrine 2

Is it possible to load a class from a file with no namespace? I have one class inside doctrine\models which looks like this: namespace models; //This was registered in the Bootstrap.php ... .... $x ...
1
vote
1answer
31 views

Create login with groups (with roles) and users with revoke roles - Symfony2

I there, I Want create a custom authentication that provides user roles, groups and roles groups. The login that i want to create is the next: Users have groups and groups have roles; Users have ...
1
vote
2answers
30 views

How do you populate an Entity with foreign keys from an Array in Symfony2/doctrine

Consider an entity which has a foreign key. We receive an array which contains the foreign key as an integer and we want to populate the current entity from the array (this could be either an update ...
1
vote
3answers
33 views

How to sort findAll Doctrine's method

I've been reading Doctrine's documentation, but I haven't been able to find a way to sort findAll() Results. I'm using symfony2 + doctrine, this is the statement that I'm using inside my Controller: ...
1
vote
1answer
27 views

Doctrine INNER/LEFT JOIN two tables

I am learning from this Question but facing issues with many operations in between: doctrine 2 query builder and join tables Below is my Questions. I am looking for help in my previous question ...
0
votes
0answers
7 views

Doctrine 2 Query Cache in Repositories Best Practise?

Im currently playing around with Doctrine 2 and Query Caching. I have an "ImageRepository" with fetches "Image" entities from the database. I want to use query cache, but what i built kinda feels ...
0
votes
0answers
15 views

gedmo doctrine translatable extension. Retrieve all translations or a specific one (different from the current locale)

I've an entity that uses gedmo doctrine translatable extension. I'm able to load this entity in the current locale. Now, for an admin panel where I want users to see and edit the various ...
0
votes
0answers
18 views

DoctrineExtensions - Timestampable for Documents are not working

I ve implemented https://github.com/l3pp4rd/DoctrineExtensions in my sf2.3 projekt and all extensions are working pretty good for ORM. But i am using ODM in the same application. The Problem is, that ...
1
vote
1answer
16 views

Symfony2 and MongoDB Annotations / Mapping not recognized

I followed the steps descriped in the cookbook. But when i run doctrine:mapping:info or doctrine:generate:entities doctrine ignores my file. Here is the code, maybe someone has an advice. ...
0
votes
2answers
29 views

Zf2 and Doctrine Annotations give trouble to make a 'new' form

I am trying to create a form to create a new product. In my Controller I have the follwoing code: public function newAction() { $repo = ...
0
votes
2answers
126 views

Running Doctrine2 command-line utility inside Zend Framework2

I've read this tutorial and I've tried to setup Doctrine2 inside a Zend2 project: I've registered Doctrine2 as a dependency and installed it successfully I've followed the tutorial to register ...
0
votes
1answer
47 views

How do I fix this “Call to undefined method” error in Doctrine when using Symfony 2.3

When using Doctrine to generate a new ORM model in Symfony 2.3, I get the following error: Call to undefined method Doctrine\ORM\Configuration::getAliasNamespaces() How do I fix this?
0
votes
1answer
17 views

How to use Inner join on doctrine

User table id name sex 1 john female 2 bob male 3 tom female Schedule table id title 2 work // bob goes to work 2 shopping 3 shopping // tom goes to shopping 1 work Schedule.id is ...
1
vote
2answers
46 views

Symfony best practices. Should queries be in repositories or services?

I have a question about best practices in Symfony 2. Sorry if it's a bit vague and subjective. I guess I can sum up my question as: "Are repositories always the right place for queries?". Right now ...
0
votes
0answers
7 views

Get false or null value from boolean field of entity in doctrine

I'm wondering the proper way to control if a field is set to null or to 0 in database. If I try to get the boolean field value I get empty value of both cases, if it's set to null and if it's set to ...
1
vote
1answer
35 views

How do I configure a Doctrine2 entity which extends PersistentObject within Symfony2 project?

I would like to be able to use the PersistentObject described here http://www.doctrine-project.org/blog/a-doctrine-orm-odm-base-class.html during development of a Symfony2 project, to avoid creating ...
1
vote
0answers
35 views

Doctrine Query to find total number of Result in MySQL with LIMIT

I am trying to fetch the total number of rows found for specific query when LIMIT is applied. I successfully found the answer in PHP/MySQL, But I am not able to conver the logic in Zend/Doctrine. I am ...
0
votes
1answer
27 views

Doctrine dynamic Entity attributes

In Doctrine2 I have a class that has an attribute that's calculated using a complex SQL query. That attribute is called "duplicate" I don't want to persist this value in my database and I want it to ...
2
votes
3answers
39 views

Doctrine2 - need some help modifying working dql

I have the following dql SELECT query, which works: SELECT q AS question, AVG(r.score) AS average FROM MyBundle:Question q JOIN q.ratings r WHERE q.deleted IS NULL GROUP BY q.id ORDER BY ...
0
votes
1answer
22 views

Symfony2, doctrine2 & querybuilder: selecting the last entity of an association if available

An entity "asset" is associated with "logEntries". There could be 0..N log entries for each asset. Part of each log entry is a field (or property) "status". The current status of each asset, is ...
0
votes
1answer
24 views

Autoloader expected class Symfony2

I'm using symfony 2.3 framework and the autoloader claims to have found the file but no class: RuntimeException: The autoloader expected class "Sensio\Bundle\ ...
0
votes
0answers
11 views

DQL. Get entity associated with another entity

I have 2 entities: ChannelInfo TrunkChannel In Trunkchannel i have channel_id, that keeps related record by ChannelInfo->id. I not use associations in Mysql, but I need to get each TrunkChannel ...
0
votes
1answer
37 views

PDOException could not find driver on Zend Framework 2 + Doctrine

I'm trying to install Zend Framework 2 + Doctrine from this manual and have some problem with PDO driver. Doctrine is trying to connect to my MySQL server and then trying to create schema: ...

1 2 3 4 5 83