Symfony 2 dies and gives me blank page. Disclaimer: I hate blank pages. Anyway, how do I find out what went wrong; why it died; why there\'s no error?
I have two entities one is Role and other is User , I want to build forms and reports to add and show each role with their users , and to create a user with one Role so its User:Role (One-To-Many), I
I\'m trying to get doctrine 2 work for me (I used to work with d1) but I can\'t get doctrine generate the models (like on doctrine1)
I have a \"Post\" entity and I want users to vote for those posts. Votes by authenticated and anonymous users are being stored in separate DB tables, so there are two separate \"VoteAnonymous\" and \"
I am using Doctrine 2, and a MySQL back end开发者_JAVA技巧. I am running a CLI command to analyze the the schema and produce YML files. I am using the following CLI command.
I have Doctrine 2 model defined as: class Movie { /** @Id @Column(type=\"integer\") @GeneratedValue @var int */
Hello I have got this php order by annotations on my one to many relationship /** * TaskCategory * * @Table(name=\"task_category\")
I have 2 databases db1 and db2 in symfony2 + doctrine2 and both databases are different from each other in terms of tables and their fields.
I need to create native SQL 开发者_运维问答query with couple of unions and subqueries. It\'ll look approximately like this:
I\'ve this Query on doctrine2 that basically returns the different tags a Host have. May not be the best way to do it but it works. See, the tag<->ticket<->host are both manytomany relations.