Tagged Questions
0
votes
1answer
18 views
Doctrine QueryBuilder returns QueryException
I'm trying to get my Page Entities using the Doctrine QueryBuilder. I have succesfully implemented the ORM and it generated my database without any trouble. Now that I want to grab the Entities from ...
0
votes
0answers
16 views
Doctrine 2 Entities with different sources
need some help from you with the following case: I want use Entities / Models and have to get my data from a database, a config file and calls to a soap api. The reason is that i want to collect them ...
0
votes
0answers
17 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 ...
0
votes
1answer
16 views
Query birthdays of the day with Doctrine ORM
With raw SQL I habitually do the following:
SELECT * FROM users WHERE MONTH(birthday) = 11 AND DAY(birthday) = 17.
But these MONTH() and DAY() functions does not work with all databases =/
So what ...
0
votes
0answers
16 views
Doctrine2: Updating association without retrieve related entity
I am building a web service, and would like to be able to update an association without retrieving the related entity.
To explain easily, let's imagine this a blog that has Post and Comments.
class ...
0
votes
0answers
24 views
Paginator with “$fetchJoinCollection = true” won't respect “ORDER BY” in doctrine DQL?
Having a strange issue. We are using MariaDB 5.5 and doctrine/orm 2.3.3, and trying to use the Doctrine Paginator with DQL.
http://docs.doctrine-project.org/en/latest/tutorials/pagination.html
The ...
0
votes
0answers
45 views
Not working orphanRemoval (OneToMany) in Doctrine Sonata
Not working orphanRemoval (OneToMany) in Doctrine (I try 2.2 and 2.3). The element from target entity trying to deleted but still available. I get not any error, just not deleted.
Configuration ...
0
votes
1answer
129 views
DoctrineORMModule zend framework 2.1.5 - exception(Model\Entity is not a valid entity or mapped super class)
I know exactly same type of issue has been posted here many times. But not a single one solved my problem, really frustrated ,googling for more than 2 days finding solutions still with no success. I ...
2
votes
1answer
38 views
Mapping and DQL
I have 3 tables - user, area, and contacts. A contact can belong to a user or an area. A user can belong to many areas.
I want to pull all the contacts that belong to a user (as specifically defined ...
0
votes
1answer
112 views
ORM Doctrine ManyToOne on update CASCADE (Symfony)
I have two entities
class Promotor
{
/**
* @ORM\ManyToOne(targetEntity="Ciudad", inversedBy="promotor")
* @ORM\JoinColumn(name="ciudad_id", referencedColumnName="id", nullable=false)
*/
protected ...
2
votes
0answers
50 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
2answers
88 views
Doctrine2 - Columns change to null just before flushing
I am trying to insert a new object/row in a database. The object is created like so:
$nodeaccess = new Nodeaccess(); // A by doctrine2 generated entity
$nodeaccess->setAccesslevel(0);
...
0
votes
2answers
49 views
Association fail with doctrine mapping Doctrine 2
I've got the following problem with doctrine 2, i want to join my adress entity and country entity to my user entity. So after some tries it works fine in the database, but when i use ...
0
votes
1answer
34 views
Symfony2 + Doctrine : Tool for generating relations between entities
when I want to create a new entity I use the following command :
php app/console doctrine:generate entity
But this will help me only to generate attributes with their setters and getters
Is ...
0
votes
1answer
45 views
Doctrine ORM - Same entity, different table for different ownership
I have an entity that in it's lifetime moves to different tables. Like so:
A village has many units
An army movement on the map contains many units
After an attack, the log file contains many units ...
2
votes
1answer
49 views
Where to place the docblock annotations in Doctrine 2.3.3
I am upgrading my ORM from Doctrine 1.2 to Doctrine 2.3.3. In the previous version we used to generate models and use them to interact with specific tables. But in the latter versions we write the ...
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:
/**
* ...
1
vote
1answer
53 views
Doctrine2 Querybuilder bitwise and
I would like to use a bitwise comparison in my Doctrine2/Symfony2 QueryBuilder.
I tried
->andWhere('n.sharingenabled & 1')
And
->andWhere('BIT_AND(n.sharingenabled, 1)')
but they both ...
2
votes
1answer
62 views
Mapping extra rows on a Doctrine 2 entity
The thing is, my users have ratings that are averaged through an MtM relation, e.g. a User has many Ratings and the average of Rating entity field values is the user's rating.
What I want to do is ...
0
votes
1answer
90 views
Symfony2 Doctrine2 trouble with optional one to one relation
I have a problem with Doctrine2 in Symfony2 and two relationed entities.
There is a user-entity that can (not must) have a usermeta-entity referenced which contains information like biography etc.
...
1
vote
1answer
109 views
Doctrine 2 and ORM: how to cache every query for some entity?
I'm fighting with this problem a lot of time and found, that officially, I could cache only some custom queries (useResultCache(true) on Query object). But I need to cache every query in my ...
0
votes
1answer
141 views
ZF2 Skeleton and Doctrine ORM xml schema merge
I am using the Doctrine Module for ORM functionality in Zend Framework 2.
I am trying to build a modular architecture based on Zend Skeletton Application which makes it possible to override and extend ...
1
vote
1answer
42 views
Order Association by other Association from Mapping - Doctrine2
This works Ordering To-Many Associations
/** @Entity **/
class User
{
// ...
/**
* @ORM\ManyToMany(targetEntity="Group")
* @ORM\OrderBy({"name" = "ASC"})
**/
private ...
1
vote
2answers
336 views
Symfony 2 form : entity widget with many to one/one to many relation - relation not persisting
I have a Audit form, to which i can attach several ressources (Audit has many Ressources, a ressource is attached to only one audit).
the form is well presented in the view, yet, when saving the ...
0
votes
0answers
41 views
Partial merge in doctrine?
In a system I'm developing, I send a whole form through AJAX to the system's logic. The form allows me to update a bunch of data related to a single class, however, I don't have the need to update all ...
0
votes
1answer
158 views
Symfony2 Doctrine2 - generate Many-To-Many annotation from existing database by doctrine:mapping:import
I want to generate Entities from an Existing Database by using Doctrine tools for reverse engineering
you can ask Doctrine to import the schema and build related entity classes by executing the ...
0
votes
1answer
200 views
Symfony2 Doctrine2 - generate One-To-Many annotation from existing database by doctrine:mapping:import
I want to generate Entities from an Existing Database by using Doctrine tools for reverse engineering
/*
* SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for ...
2
votes
3answers
63 views
What is the equivalent of a repository for writing tasks in doctrine?
As the API of Doctrine says:
An EntityRepository serves as a repository for entities with generic
as well as business specific methods for retrieving entities.
This class is designed for ...
0
votes
1answer
53 views
OneToMany Relation with reference on a thrid table?
I got two entities with a simple OneToMany relation and anything works as expected.
The user entity:
class User {
/**
* @ORM\OneToMany(targetEntity="Vita", mappedBy="owner")
*/
}
and ...
0
votes
1answer
57 views
Creating a new entity, and updating another at once
I've searched a lot about this, and seriously asking is my last resource, doctrine is kicking me hard.
I have an entity named "Contract" and another "Request", a Contract may have several Requests, ...
1
vote
1answer
30 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 = ...
1
vote
1answer
87 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?
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", ...
3
votes
2answers
95 views
Creating mappings in Doctrine2 for meta table structrure for use in FormBuilder
I have two tables:
Branches:
+-------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
...
0
votes
2answers
123 views
symfony2 create doctrine collection from query
Not sure if this is possible or not but im looking to create a doctrine collection from a query. The idea is to populate the collection with some pre-set values so i can update the database think of ...
-1
votes
1answer
132 views
ReflectionException is thrown when mapping entities in Doctrine from different databases
I'm trying to use Doctrine 2 in a ZF2 application which contains two modules, each with its own database. I need to use cross-database joins so that I can associate entities from one module with ...
0
votes
1answer
69 views
What do scale and precision mean when specifying a decimal field type in Doctrine 2?
I'm creating a decimal field to hold a financial figure in Doctrine2 for my Symfony2 application.
Currently, it looks like this:
/**
* @ORM\Column(type="decimal")
*/
protected $rate;
When I ...
0
votes
1answer
189 views
Upgrading to Symfony 2.2 RC2 causes mapping errors
I have just upgraded my Symfony's project version from 2.1 to 2.2 RC2 and started seeing some mapping errors that did not appear on 2.1. My entire mapping seems to throw errors. There's an example:
...
1
vote
1answer
315 views
doctrine querybuilder limit and offset
i'm a symfony beginner and i want to make a blog with the framework. i use repository to get home articles with this method :
public function getHomeArticles($offset = null, $limit = null)
{
$qb ...
0
votes
2answers
133 views
How to solve Class xxx is not a valid entity or mapped super class error
I have defined a class Setting like this:
<?php
use Doctrine\ORM\Mapping as ORM;
/** @ORM\Entity */
class Setting {
/** @ORM\Column(type="integer")
* @ORM\GeneratedValue
* ...
-1
votes
1answer
57 views
Doctrine relation between two entities
I am trying to rewrite my website to symfony2/doctrine.
The tables use MyISAM so no foreign keys.
I simply can't convert the below query to two entities and make a relation that works. Is it because ...
0
votes
1answer
75 views
How insert new object after update entity in Doctrine 2 [duplicate]
I want save new entity after update object (Save history data).
I try add object to EntityManager and flush in preUpdate event, but i have recursion effect.
0
votes
1answer
108 views
Doctrine 2.2 ORM: After reverse-engineering from database MappingException is thrown
I'm using Zend Framework boilerplate without the virtual machine.
My Application.ini, looks like this:
...
0
votes
2answers
85 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
1answer
64 views
Doctrine2 update only using objects
Is there any way to make update with criteria in Doctrine2 without using DQL and Native SQL? I mean only working with objects.
For example something like this:
$data = new Entities\Articles();
...
0
votes
1answer
330 views
Doctrine2: Call to undefined method Doctrine\ORM\QueryBuilder::field()
I am trying to create a query with the doctrine query builder:
public function searchAuthors($q)
{
$qb = $this->createQueryBuilder('Author')
...
2
votes
2answers
873 views
Zend Framework 2 Doctrine 2 CLI generate-entities from YAML each module
I have clean project ZendSkeletonApplication with integrated Doctrine 2 module "doctrine-orm-module" etc via Composer. Doctrine CLI works from vendor/bin.
I have 'Application' and 'Blog' module, my ...
0
votes
1answer
127 views
Doctrine postLoad event for associations
I currently have an entity which I would like to modify slightly upon load. This modification will be a one time change which will then be persisted in a new field along with the entity.
To clarify ...
0
votes
2answers
32 views
Doctrine2, create one entity from another?
I'm using Doctine2\ORM and i have en entity for user , and the role.
When user is registering, i need to create role record with user id and return its id to user, then create the user record, how ...
0
votes
3answers
232 views
Symfony 2 - How to remove the default date picker of the Date Field Type?
In my formType I use the following to render my Date Field Type.
$builder->add('date_naissance', 'date', array(
'input' => 'datetime',
'widget' => 'single_text',
...







