I have a field that is defined as follows: class Subcategory extends BaseSubcategory {} abstract class BaseSubcategory extends Doctrine_Record
I\'m wondering what\'s the best, the cleanest and the most simply way to work with many-to-many relations in Doctrine2.
I have a column of type object in a model. But if I load a model, and change a property of the object, and then re-save, it doesn\'t seem re-serialize the object. 开发者_开发问答e.g.
Doctrine_Core::createTablesFromModels() is failing with the following error: Fatal error: Uncaught exception \'Doctrine_Connection_Mysql_Exception\' with message \'SQLSTATE[42S02]: Base table or vie
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I\'m using Doctrine 1.2 with Zend Framework, and it\'s working just fine.Now I want to start using the results cache and query caching capabilities to reduce the load on DB server that powers the appl
I have wrote universal script to get all rows from Doctrine Table Models, but if rows amount is too large, i get exception:
I wanted to write unit tests for my Zend Framework/Doctrine 2.0 application, but I don\'t quite understand how to set up unit testing in ZF. Also, I would like to include Doctrine 2.0 in those unit te
I\'m looking for 开发者_如何学编程a way to let Doctrine generate getters and setters for me, because otherwise it will call the Doctrine_Record \"get\" method which costs a lot of time.
I come from a Codeigniter MVC background that we\'ve been working with for some time now. It\'s time to roll our own framework for a big project, but we have come now to the Database part and got a bi