I am using symfony 1.4 with Doctrine.I have built a form which uses a table that has the Versionable behaviour.As expected, Versionable creates a new version of the row 开发者_C百科every time the form
I am developing a form in a Symfony application where a user must indicate a country, a region and an optional island using HTML select elements.
I have a doctrine query that returns blog posts and their comments: SELECT b, c FROM BlogPost b LEFT JOIN b.comments c
We are using symfony 1.4 with doctrine.Because of the nature of our development, the three of us working on this project need to regenerate our schema, model, forms and filters every morning.
Addendum Doctrine 2 Annotations Can you give me any reason one is better than the other ? Here my list for now :
I\'m looking into Doctrine as my ORM for an upcoming CodeIgniter project. I\'ve never used an ORM before, but based on what I have read so far, it\'s a great thing. So, I\'d like to get my hands in it
Consider this query: $query = Doctrine::getTable(\'sfGuardUser\') ->createQuery(\'u\') ->innerJoin(\'u.Groups g\')
I\'m trying to update a foreign key in processForm() and get this error. It\'s a valid value I can set values to a normal field without problem, I only get this error when I try to update foreign keys
I need to put a search box within 开发者_如何转开发a list of objects as a result of a typical indexSuccess action in Symfony. The goal is simple: filter the list according to a criteria.
Is possible to remove a column in a migration postUp() method or is only intended to be used for data manipula开发者_StackOverflow社区tion?I don\'t know what version of Doctrine Migrations you are usi