The Doctrine Project is a collection of open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP.
I'm using this tutorial, which gives a detail explanation about how to set up CodeIgniter and Doctrine. I'm using CodeIgniter 2.1.0 …
codeigniter doctrine doctrine-orm doctrine-odmThis should be simple but I can't find a working example. Here's a controller method that throws the error "Invalid …
symfony doctrine-orm doctrine query-builder dqlHow can I count an entity's items with a condition in Doctrine? For example, I realize that I can use: $…
php doctrine-orm doctrineI am using Doctrine 1.2, how could I get the query object into json / array format? $user = Doctrine_Query::create() -&…
php json doctrine doctrine-1.2I am using doctrine 2.1 in order to create a model for settings table: id | arg | value | category 1 | name | foo | general_…
php multidimensional-array doctrine-orm doctrineI would like to perform a SELECT from the results of a subquery in DQL. The equivalent of doing the …
doctrine symfony dqlWhen using a Doctrine_Table object, is it possible to specify the order of the returned collection when using findAll() …
php symfony1 doctrineI have a table for my categories, each category have and id, name and parent_id. Select IF(a.parent_…
mysql symfony doctrine doctrine-orm