I\'ve started a CI project and I\'m going to use it with Doctrine, there is benchmarking system for the latter and I\'d like to remove the ability to use native CodeIgniter DB class, since it won\'t b
I\'m trying to write a basic plugin for the Symfony based CMS Diem. I\'m trying to list of the child pages for the current page, which I have managed to do:
I\'m trying to check for the existence of a table before dropp开发者_开发技巧ing it. I\'ve read through the API documentation for Doctrine_Table and I can\'t seem to find anything like this. Is there
How should be implemented facultative one-to-one relation in Doctrine ORM and Symfony? Suppose there are some folders represented in database. Each folder can have a default icon or some custom icon r
I\'m experimenting with the Doctrine ORM (v1.2) for PHP. I have defined a class \"liquor\", with two child classes \"gin\" and \"whiskey\". I am using concrete inheritance (class table inheritance in
In my database, the user management is divided into two tables: - One created by the symfony sfDoctrineGuard plugin (sfGuardUser), with the username, 开发者_如何学Gothe password and other information
I have a Doctrine_Collection object that was created with code that looks something like. $collection = Doctrine_Query::create()
I want to be able to get and set the date using my own date format (dd/mm/yyyy) and not doctrine (yyyy-mm-dd). I\'ve found a way that is specifying a getter and setter for every date field however I w
In doctrine, is it possible to add a WHERE clause when fetching a property of an object that corresponds to a relationship?
In table class Ouders I do the following query: $q = $this->createQuery(\'o\') ->where(\'o.ouderid IN (SELECT DISTINCT k.parentid FROM Kinderen k WHERE k.schoolid = ?)\', $schoolcode)