0
votes
3answers
63 views

Retrieve the Data in Tree structure in php

Currently i am working on creating apis in symfony2.2 framework. I have to retrieve a bunch of questions and answers from the database. Q1 ...
3
votes
2answers
100 views

Doctrine 2.3 - text field is not saved because of special characters

I've spent hours to debug an algo and noticed it was coming from Doctrine (v2.3.3). I'm using libpuzzle to calculate a hash of an image and store this hash in the database. The hash returned has ...
0
votes
0answers
27 views

update records in DB with minmum time in Symfony 2.1

I have scenario where I have to update multiple records for small changes in one record to maintain order. say,I have table: table1 Id item rank badge ------------------ 1 1 1 1 2 2 2 ...
0
votes
1answer
66 views

Doctrine query syntax error

I have a value in database like stackover/'!@#/\;"""'.;\';'./ with all special char. Now my problem is that how can I build a query like: $linkName= // getting from db $sql_sm="SELECT d FROM ...
0
votes
1answer
32 views

How do I separate the results

I have the following query on Doctrine QueryBuilder: $qb = $this->createQueryBuilder('e') ->select('e.id, e.name, e.body, e.teaser, e.slug, e.dateBegin, e.dateEnd, e.dateTbd, v.name ...
0
votes
1answer
44 views

Select User Having Maximum Rating

I have a table which stores the rating given by the user. eg: UserId Rating 3 1 3 2 1 1 1 2 1 3 1 4 2 1 2 ...
2
votes
1answer
137 views

Why is a many-to-many relation empty?

I am building a website with a user authentified part, on Symfony 2.1.3, with Doctrine 2. Each user can be a member of a "usergroup", and each usergroup can contains many users. So it is a ...
8
votes
2answers
2k views

MySQL Illegal mix of collations

After viewing my prod logs, I have some error mentionning : [2012-08-31 15:56:43] request.CRITICAL: Doctrine\DBAL\DBALException: An exception occurred while executing 'SELECT t0.username ....... ...
0
votes
0answers
251 views

symfony2: Setting PdoSessionHandler correctly

I followed the symfony 2.1 cookbook page on using PDO for saving sessing data, on this link: http://symfony.com/doc/master/cookbook/configuration/pdo_session_storage.html the thing is, on my dev ...
0
votes
1answer
47 views

Is there any way that i can make few tables write proof in doctrine2 mysql

I am building a Symfony2.1 doctrine 2.3 app. As i was not able to fully code the complex form , there is possibility that my few tables gets updated which i don't want. IS there any way that i can ...