Tagged Questions
0
votes
0answers
20 views
Symfony2 - Apply a DataTransformer to a collection in forms
I need to make a Symfony2 Form and add a data transformer to a Collection. I have a StudentType Form that has a hidden field, which will contain a unique student mail. The case use is a course that ...
0
votes
2answers
23 views
Symfony 2 no command for generating doctrine crud
i`m trying to generate CRUD for some entities in Symfony 2, apparently the
generate:doctrine:crud command is unavailable.
[InvalidArgumentException]
Command ...
0
votes
1answer
16 views
Getting Doctrine associaton mappings
I have a call that looks like the following:
$foo = $em->getRepository('MyBundle:Bar')->find($id);
I would like to be able to loop over all of the column/value pairs that get returned into ...
0
votes
1answer
25 views
Symfony2 Doctrine get random product from a category
I have the following database scheme:
table 'products'
id
category_id
and of course a category table, just with an id.
The data look something like that:
Products
--------------------
| id | ...
0
votes
2answers
35 views
Get entity by ID from multiple entities in Symfony2
Suppose we have a set of entities:
$entities = $em->getRepository('MyBundle:Entity')->findBy(array('cat' => 1));
What is the best way to pick up a single entity out of this set by ID? Of ...
0
votes
0answers
8 views
Get original text when in another locale with Translatable / Doctrine
I'm trying to get the original value of a text when I'm in another locale.
My site is PT ( default ), EN and ES. In some pages, when I'm navigating in EN locale, I need to fetch de PT value of some ...
0
votes
0answers
25 views
How to connect to MySQL using SSL on symfony/doctrine
I am trying to connect to MySQL that has SSL enabled.
I am using Symfony2 framework with Doctrine.
In plain PHP, I can achieve this with
$link = ...
0
votes
0answers
19 views
Doctrine 2 - Outer join query
In the context of the SonataAdminBundle / SonataUserBundle, I'm using the query builder to add static filters to the "list" query :
With this query, I get only users in the group "Juge", the query ...
1
vote
1answer
36 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
2answers
43 views
Million ManyToMany Entries - Memory Problems
i develope a type of "Statistics-Web".
For example i have some blog entries and for each visitor a extra statistic entry.
Example blog entity:
/**
* @ORM\ManyToMany(targetEntity="Statistic", ...
1
vote
1answer
46 views
Symfony2 - Validation for form with multiple entities not working
I have a Form for Product with relation oneToMany with entity ProductLocale and the user can add many ProductLocale as he want.
The rendered form in html seems correct but when I receive the POST ...
0
votes
0answers
15 views
How to connect the existing database with the OrangeHRM
I know OrangeHRM uses database named "orangehrm_mysql" . I want to connect an other existing database (of MySql).
I m confused here how to connect the my own database with the OrangeHRM.
I have ...
0
votes
1answer
19 views
how to do a join in doctrine with createQuiry or DQL
What i want is to do is this query in doctrine :
SELECT *
FROM `reservation`
JOIN res_chauf ON reservation.reservation_id = res_chauf.reservation_id
WHERE res_chauf.chauffeur_id =1
in ...
0
votes
1answer
61 views
How to write this query in Doctrine2 ? (subquery + JOINs)
This is the query I want to implement using Doctrine2 :
SELECT d1_.codeLieu AS codeLieu1, d1_.nomLieu AS nomLieu2, d1_.lngLieu AS lngLieu3, d1_.latLieu AS latLieu4, m2_.libelleMention AS ...
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
2answers
49 views
Getting the group_id by using Groups with FOSUserBundle
I have configured the FOSUserBundle Group follow Using Groups With FOSUserBundle and get it to work.
// src/SM4/UserBundle/Entity/User.php
/**
* ...
0
votes
0answers
23 views
Symfony2/Doctrine2 : Is there a function that allows me to do a CROSS JOIN?
This is like this :
SELECT *
FROM table1
CROSS JOIN table2
How can I write it using the methods provided with Doctrine2 ?
I'm stuck on this :
// 'em' is the Entity Manager
$em = ...
1
vote
0answers
49 views
getReference() of doctrine Entity Manager
Situation:
I want to use the getReference() function of doctrine2 Entity Manager. However, in a situation where I ask for an object that has been deleted from the database, I obtain a proxy if I ask ...
0
votes
0answers
28 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
1answer
27 views
Symfony2 - Authentication login… service
I had this application (running already on prod) for a while. The thing is that as a new project for this application I need to add a couple of rest services for authenticated users.
Currently the ...
0
votes
0answers
46 views
Symfony2 forms with many to many through
I'm working on some project with excellent symfony2 framework and I'm stack with some problem.
I have to implement these entities:
User
System
Partner
User entity is a kind of customer and in the ...
0
votes
1answer
31 views
Symfony validator with Doctrine query
I'm writing a forgotten password form and, using PHP validation (as opposed to YML), I am trying to first of all check whether the e-mail address exists.
I think I'm mostly there but I can't seem to ...
0
votes
0answers
19 views
Mapping a table on doctrine
Im using this code to join the table brand with the table user_brand_administrated
/**
* @var ArrayCollection $administered
*
* @ORM\ManyToMany(targetEntity="Done\PunctisBundle\Entity\Brand", ...
0
votes
1answer
34 views
Symfony Doctrine generate entities from multiple databases
With Doctrine in Symfony2 there is a simple way to start a project with reverse-engineered Entities created from existing database schema. It is quite well documented here. There is not mentioned how ...
0
votes
1answer
69 views
Lazy load between referenced documents on MongoDB with Doctrine ODM
Helo,
firstly, please excuse my English, is not very good.
I am migrating the data container of a Symfony2 application to MongoDB, before that it run with MySQL.
I added the DoctrineMongoDBBundle ...
0
votes
1answer
47 views
Accessing an embedded field in a collectionType in form
What I want to do :
I'm trying to access a field from an embedded formType in a collection.
I can easily access the first level (so getting the collection) with $form->get('childType') but I ...
0
votes
1answer
36 views
Adding an entity in an other bundle through forms symfony2
I wanted to ask about adding an entity in one bundle through a form of an entity in an other different bundle.
I feel this is impossible in symfony because when I tried it, I got a warning.
...
0
votes
0answers
12 views
Doctrine object autoupdate triggered on calling its getter - what's “legal” to do?
In a table A I have a coulumn A.count that counts entries in table B that are related to a particular A's row. A.updateDate keeps timestamp of last A.count update. The idea of A's entity's getCount ...
1
vote
0answers
30 views
Doctrine: Handling monthly data
I am developing an application using Symfony2 and Doctrine2. I have many tables that store monthly data. In general I define entities like so:
class Entity {
private $atribute1;
// ...
...
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.
/**
* ...
-1
votes
1answer
31 views
DQL Doctrine query translation
I have my scores table where I have multiple scores for 1 user. What I am trying to do is to select all highest scores for each user.
I am trying to do the fallowing in Doctrine DQL:
SELECT ...
0
votes
1answer
46 views
Add field with OneToOne relation in FOSUser register form
I need your help to add some field in my register form in FOSUSerBundle.
I want to localize a user and save his latitude/longitude in the register form.
I create a oneToOne relation between my User ...
0
votes
1answer
44 views
Doctrine/MySQL: field missing in ResultSetMapping
I have a native query an want to fill a ResultSetMapping object with the results of my query.
Everything works as expected, but the field "distance". The field in the resulting array is always empty. ...
0
votes
0answers
61 views
Doctrine mongo ODM duplicating embedded documents in Symfony
Using Doctrine mongo ODM 1.0.0-BETA8 in Symfony 2.2.1, I'm running into troubles with the update portion of CRUD. Upon persist() the new embedded documents are being duplicated.
I ran the phpunit ...
-1
votes
1answer
39 views
Doctrine join 4 entities and order by datetime
I would like to join 4 entities that each have upload_datetime column. Then i would like to order them by that datetime column descending and get only 7 records.
Right now i have this:
return ...
0
votes
0answers
26 views
Share library with entity and metadata [closed]
I want to share a library with an abstract entity with its associated metadata. (superclasses)
What are the recommendations to do in these circumstances? In my application, if I do inherit the ...
0
votes
3answers
78 views
doctrine query builder join adding table twice
UPDATED at bottom:
I am trying to do what should be a simple join between two tables. I have a Gig table and a Venue table for a simple band site that I am building using Symfony2 (2.2). It's my ...
0
votes
1answer
52 views
Symfony2 Doctrine querybuilder where IN
I losted trilion hours google this but none of the solutions were good.
I have this querybuilder:
$qb2=$this->createQueryBuilder('s')
->addSelect('u')
...
0
votes
1answer
60 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 ...
0
votes
1answer
28 views
Apply custom doctrine output walker by default to all queries
I have written the following custom walker to use postgres's ilike instead of like:
use Doctrine\ORM\Query\SqlWalker;
class IlikeWalker extends SqlWalker
{
/**
* Walks down a SelectClause ...
0
votes
1answer
35 views
Removing Associations doctrine symfony2
I have two relationships.
product family.
a family can have several products. a product belongs to one family.
Taking a product like you can remove the family relationship. ie how could leave a ...
0
votes
1answer
43 views
relation many to one between two entities in two bundles symfony
I have two entities related with many to one relation but each one belongs to a bundle.
When forcing the update in the database I get the following error
the target -entity cannot ...
0
votes
0answers
37 views
symfony2 doctrine select IFNULL
Ok i have this code:
SELECT
IFNULL(s2.id,s1.id) AS effectiveID,
IFNULL(s2.status, s1.status) AS effectiveStatus,
IFNULL(s2.user_id, s1.user_id) as effectiveUser,
IFNULL(s2.likes_count, ...
0
votes
1answer
69 views
Doctrine query building select MAX
I would like to select everything + MAX value and receive only rows having max values.
$query = $this->createQueryBuilder('s');
$query->where('s.challenge = ...
1
vote
1answer
41 views
symfony2 locale and validation messages
locale: pl in my parameters.yml but my validation messages are in english not polish,
I have also try locale: pl_PL but this also didn't work
Each time I cleared cache
0
votes
0answers
49 views
“AddSelect(SUM) ” Doctrine in createQueryBuilder()
Mi Index Controller
public function indexAction()
{
$em = $this->getDoctrine()->getManager();
$qb = $em->createQueryBuilder();
$yesterday = new \DateTime('yesterday');
...
0
votes
2answers
91 views
Custom search using doctrine and symfony2
I am new to symfony2 and doctrine, I want to create a searchController, that searches the db for whatever keywords the user enters into a textbox. I have looked at this article and this and many ...
1
vote
1answer
46 views
getResult returns another result than SQL query Symfony2
Need just to join to a Member the first uploaded to his gallery Image, but have a big problem as I'm new to symfony.
Tables:
CREATE TABLE `member` (
`member_id` int(10) NOT NULL AUTO_INCREMENT,
...
0
votes
1answer
88 views
Unique Constraint - Symfony2 and Doctrine2
I couldn't find documentation with this written in a way I can understand it, so I'm asking you for help. This question is related to Unique entity - Symfony2
I have a table called category with ...
0
votes
2answers
52 views
Doctrine Timestampable extension not persisting
I have Doctrine timestampable set for my symfony doctrine and other entities are handling this as they should but one is not not setting any date at all.
use Doctrine\ORM\Mapping as ORM;
use ...



