0
votes
0answers
16 views

Doctrine Auto Generate Proxy

I created a new module inside Zend for some search functionality. But the problem here is how and where the doctrine auto_generate_proxy_classes DOCTRINE generated the proxy classes. My existing ...
1
vote
1answer
35 views

persist many to many relation in database symfony2

When persisting my entity from a form, I get the following error when flushing in database : Catchable Fatal Error: Argument 1 passed to Doctrine\Common\Collections\ArrayCollection::__construct() ...
0
votes
1answer
29 views

How to properly set entity update time with Doctrine?

Column in MySQL table is called "updated_at". It's of datetime type, not null. Doctine type is datetime as well. CREATE TABLE `example` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, ...
0
votes
0answers
26 views

Undefined index: joinColumns in symfony2

I have this Many-To-Many relationship in my symfony2 orm. If I export it from the database itself then it makes the entity Tag the owning side and Server the inverse side. I want to change this but ...
0
votes
0answers
35 views

one to many relation in an embeeded form symfony2

I have a bidirectionnal relation in my entityA with entity User such as the relation in the entity A is one to many. /** * ...
0
votes
1answer
58 views

Symfony2: Unable to access entity class data

when I use $product->getId() system return HTTP Error 500 Code $poduct = new Product(); //.... $em->persist($poduct); $em->flush(); return new Response('Created product id ...
2
votes
0answers
45 views

Doctrine multiple OneToMany/ManyToOne bidirectional Integrity constraint violation

In latest Doctrine on Symfony2 trying to work out multiple bidirectional relationship between two objects. Person owner object has one postal Address and then multiple secondary Addresses in a ...
0
votes
1answer
28 views

Install an ORM into an custom PHP5 framework

What is the procedure to install an ORM component such as Doctrine into an existing custom PHP5 MVC framework? What are the minimal requirement in terms of framework architecture and fonctionalities ? ...
0
votes
0answers
14 views

Doctrine: Weird relation - how to map it?

There are two tables in my DB: Teams: TeamID int [PK] NameHistoryID int Sport varchar Founded datetime ... NameHistory: NameHistoryID int [PK] ValidSince datetime [PK] Name varchar ...
0
votes
1answer
35 views

Symfony2/Doctrine2 : A way to save (flush) data even if some represent an issue?

I have a few Excel files that I import to a MySQL database. The Excel files are big, and so is the database. The thing is when my script persists many objects, there must be something wrong with some. ...
0
votes
1answer
41 views

persist () and flush() inside loop - Doctrine

I want to know how many times the ff: codes will make a roundway trip to the database. foreach ($recipients as $recipient ){ $received_email = new ReceivedEmail(); ...
1
vote
1answer
51 views

Extend function with Doctrine ORM Annotation

I've got the following situation: a (Doctrine Entity) ContentCategory that is extending the DataObject class. The DataObject class has the following function, onPrePersist: /** * ...
0
votes
1answer
84 views

Issues in Doctrine ORM usage in Zend Framework

I have installed Doctrine in my ZendFramework application and kept it in the Library folder of the application. But when I try to run the application, I am getting the following error: Warning: ...
0
votes
1answer
12 views

Dcotrine 2.1 find entity by unique field

I want to find an entity by an unique (in this example the email) field. User id (int, pk) email (string, not null, unique) password (string, not null) I know that there is findBy for repositories ...
3
votes
1answer
82 views

What's the purpose of Doctrine's query builder?

I'm wondering what exactly are the pros of using doctrine to build queries such as : <?php // $qb instanceof QueryBuilder $qb->select('u') ->from('User u') ->where('u.id = ...
1
vote
1answer
30 views

Doctrine not linking to owning object when adding to ArrayCollection

I have a problem when attempting to create a new Requirement object on my website. In my Requirement object I have the following Doctrine field: /** * @ORM\OneToMany(targetEntity="Verification", ...
2
votes
1answer
37 views

Can we use common (doctrine) orm files in multiple bundles in symfony2 ?

I am new to symfony2. I am developing a web application in which I have two bundles: first one is AdminBundle and second is UserBundle. I am using Doctrine ORM for database. I have multiple tables in ...
1
vote
3answers
109 views

Does ORM lead to bad coding practices? [closed]

We're using ORM in PHP on our team, and I've noted in two separate projects that, even though we've specifically talked about good MVC design at length, that ORM appears to be allowing people to do DB ...
0
votes
1answer
81 views

symfony ORM doctrine queries

I have easy query with inner join $qb = $this->createQueryBuilder('r') ->innerJoin('UserBundle:User', 'u') ->where('r.nick = u.id') ->andWhere('r.odobera=:id') ...
1
vote
1answer
29 views

Doctrine entity ManyToOne relation

I want to know, what is a best to my solve my problem: I have two entities: Cattery and Cat. Cattery entity have two properties: Cats and Kittens. Where each property have type, for Cats Cat.type = ...
0
votes
1answer
44 views

PHP CodeIgniter returning Controller Name rather than Doctrine Associated Entity

I have a basic entity that has a Unidirectional OneToOne relationship with another entity. I have an instance of the owning entity that's created via a variable method as so: $entity = new $entity; ...
1
vote
1answer
83 views

What is difference between orm and dbal?

I am using doctrine. It provides orm and dbal. I couldn't exactly understand it. when and which one should use?
0
votes
1answer
25 views

Doctrine - ModelClassName not found

I am new to doctrine(using version 1.2) and following the steps given in the documentation manual. I've installed and configured it perfectly. But i have a problem while working with models. I have ...
0
votes
3answers
402 views

Symfony2 - Doctrine and FOSUserBundle - wrong annotations

I am new to Symfony2 in general. This issue relates to Doctrine and FOSUserBundle though. I have the following User.php Entity created based on FOSUserBundle and a self-referencing many-to many. ...
1
vote
2answers
39 views

Removing entities from another entity

To make it simple, let's say I have two objects with one-to-many relation: User --(1:n)--> Request with User defined as class User { ... /** @OneToMany(targetEntity="Request", mappedBy="user", ...
0
votes
0answers
47 views

php Doctrince svn: E200005: \path\to\project\lib\vendor is not under version control

I am trying to install Doctrine in my project (which is under version control, I use Tortoise SVN) and am referring the manual provided by Doctrine itself. There it says that if the project is already ...
0
votes
1answer
104 views

Doctrine2 findAll() method not grabbing associated data?

I have a very simple question. Currently I'm using Doctrine2's findAll() method after the getRepository method and I have a simple OneToOne relationship setup (Manufacturers has a field address_id ...
0
votes
1answer
32 views

Adding a persisted object to another with Doctrine

I'm guessing that I just don't understand Doctrine fully yet, but here's what I'm doing: I have a create account form where the user enters in typical stuff (user, pass, email) and I'm taking the ...
0
votes
3answers
137 views

Is there any Doctrine schema generator with UI (designer)?

I've tried to use ORM Designer, but I can't export the schema to PHP, just YML. And I want php. Is there any tool to do this? What do you use for "big" projects? Or you guys just do it typing code?
1
vote
1answer
258 views

Doctrine association mapping between entities in different bundle or relate entities from two different bundles?

Region: namespace Acme\RegionBundle\Entity; class Region { private $id; /** * @ORM\OneToMany(targetEntity="User") * @ORM\JoinColumn(name="region_id", referencedColumnName="id") ...
0
votes
2answers
80 views

Why Doctrine 2 not have basic validate method that validate if all values fit entities attributes?

I am new with doctrine 2. Why Doctrine 2 not have basic validate method that validate if all values fit entities attributes? My question target to understand more how doctrine 2 works and why ...
1
vote
0answers
188 views

Doctrine ORM Manager named “” does not exist

I was setting up Symfony 2.1, SonataAdminBundle, FOSUserBundle and SonataUserBundle with the help of ...
0
votes
1answer
75 views

Symfony2, Doctrine OneToOne realtions

I have table (let's name it "First") with columns id, userID, moonID, typeID. And another table (let's name it "Second") where is also column "typeID" and TypeName (simple example, basicly this table ...
1
vote
1answer
164 views

Doctrine 2.1.4/2.1.5 Unrecognized field trying to implement Many-To-Many with an additional field

I'm trying to solve my problems using Doctrine and implementing a Many-To-Many Association with an additional field. In more Detail - it looks like this: Person - Person_Project - Project One ...
0
votes
4answers
602 views

Symfony2 and Doctrine, Column cannot be null with OneToOne relationships

Here is an entity (EDITED: full file content) // Eve\MoonBundle\Entity\MoonMaterial.php namespace Eve\MoonBundle\Entity; use Doctrine\ORM\Mapping as ORM; //use ...
1
vote
1answer
71 views

One to many or many to many?

I'm creating a website which will contain multiple pages and multiple images. The relationship is that many pages can have many images. Therefore, I would usually create a join table called ...
0
votes
3answers
243 views

Symfony2 prePersist not fired when persisting entity

I followed this tutorial: http://symfony.com/doc/current/cookbook/doctrine/file_uploads.html#using-lifecycle-callbacks However prePersist is not fired (but entity is persisted to database). ...
0
votes
1answer
94 views

Joining tables in Symfony2/Doctrine using entties

I'm trying to add relationships to my database using the annotation method in my User Entity and Role Entity classes, however when I update the meta data and run an update from the command line and ...
1
vote
1answer
40 views

Updating indexes in database with Symfony2 and Doctine

I'm trying to add indexes to my database using the annotation method in my User Entity class, however when I update the meta data and run an update from the command line and then go to phpMyAdmin ...
0
votes
1answer
173 views

No mapping found for field

I have to Entities class Patients { /** * @ORM\OneToOne(targetEntity="ContactAddress", mappedBy="patients") */ protected $contactaddress; } And another ...
0
votes
1answer
199 views

Adding custom data type (geometry) in Doctrine 2.1.7. Method canRequireSQLConversion() is not called

I am trying to add Geometry type to Doctrine. My Doctrine DBAL version and ORM versions are 2.1.7. I tried to follow the instructions here: Doctrine 2 Types - Custom Mapping Types. I successfully ...
6
votes
1answer
213 views

Doctrine ORM on EAV Tables

I was planning on creating my application and use an ORM for the models, but the thing is, there's a part of the database which uses Entity-Attribute-Value Tables. I pretty liked Doctrine ORM but I ...
0
votes
1answer
65 views

Doctrine - how to keep ManyToOne synchronized?

After reading the Doctrine reference and the Symfony tutorial on it, I started integrating it in a project. I'm experiencing a problem I thought doctrine could solve: I want to have Libraries with ...
0
votes
1answer
216 views

Doctrine 2 unable to find Proxy directory (CodeIgniter)

Following a Doctrine / CodeIgniter tutorial Everything is good up until the very end when I try to insert data through my controller $user = new Entities\User; ...
1
vote
1answer
176 views

Can't find entity model in Doctrine 2 / CodeIgniter 2

I've been following some tutorials for getting Doctrine running, and seem to hang up when I try to insert an object into the database. For reference, this is what I was following: doctrine 2 tutorial ...
-1
votes
1answer
43 views

Doctrine2 how to map entity to entity [closed]

How to map one doctrine entity to another one (or a number of) in order to make an abstraction.
1
vote
1answer
33 views

How to reference user object in a generic Symfony2 lib?

When creating a bundle which is not for one application only, but thought for a more generic use, lets say a ChatBundle, I always hit the same problem about how to use an user object which of course ...
0
votes
0answers
58 views

Doctrine DQL arithmetic priority consideration

Consider the following query on Doctrine using DQL: SELECT u.id + 100 / (25*25) FROM Entity\User u WHERE u.id = 1 Doctrine compiles it to the following SQL query: SELECT u0_.id + 100 / 25 * 25 AS ...
3
votes
3answers
430 views

Doctrine - self-referencing entity - disable fetching of children

I have a very simple entity(WpmMenu) that holds menu items connected to one another in a self-referencing relationship (adjecent list it's called)? so in my entity I have: protected $id protected ...
0
votes
1answer
199 views

PHP Database writing performance PDO VS ORM

We need to insert records in mysql quite fast for the purpose of syncing it with an other database. Which performs faster inserts. PHP PDO or some ORM (propel/doctrine)

1 2 3 4 5 8