doctrine-1.2
Doctrine 1.2, running query over a Many to Many table
I want to make a query on an automatic generated table under Doctrine 1.2. In this particular case I have the following query:[详细]
2023-03-29 05:57 分类:问答Doctrine 1.2 hydration fails with HYDRATION_RECORD, but works with HYDRATION_ARRAY
I have a code that runs perfectly with Doctrine_Core::HYDRATION_ARRAY, but crashes with Doctrine_Core::HYDRATION_RECORD. The page is loading for about two minutes and shows standard browser error mess[详细]
2023-03-27 23:45 分类:问答How to delete all data without breaking referential integrity using Doctrine?
I\'ve put together a unit testing plugin for Symfony 1.4 that attempts to manage the database automatically, similarly to the way Django\'s test framework does it (destroy and rebuild the database bet[详细]
2023-03-27 19:57 分类:问答symfony 1.4: redeclared getter makes doctrine:data-load task fail silently
Here is my part of my schema: sfGuardUser: actAs: [Timestampable] columns: email_address: type: string(255)[详细]
2023-03-26 08:20 分类:问答How to set one bit of a column in every record using Doctrine 1.2?
I\'m trying to build this SQL query: update shop_product set flags=flags^(flags&1024); Using Doctrine 1.2.[详细]
2023-03-25 17:36 分类:问答Symfony 1.4/doctrine schema.yml many to many relations does'nt work properly?
I have a little disturbing problem in here! an using symfony 1.4 with Doctrine! i fact i have a \"many to many\" relation (see code bellow) but i don\'t have the RIGHT result![详细]
2023-03-25 06:47 分类:问答symfony count user
I use symfony 1.4.12 with doctrine. I have sfGuardUser table; I can count all records like this: 开发者_如何学编程 $count_user=Doctrine::getTable(\'sfGuardUser\')->count();[详细]
2023-03-24 04:23 分类:问答Populate table nested set Doctrine 1.2
I\'m trying to populate a table set with more root Locations nested three levels: Region, Province and City.[详细]
2023-03-22 19:15 分类:问答specify key values for return $query->fetchArray()?
Using Doctrine, I\'m doing a query kinda like this: $query = Doctrine_Query::create()->select(\'id,name\')->from(\'people\');[详细]
2023-03-22 13:49 分类:问答Doctrine Get list of all Models
I want to get list of all my Doctrine Models. Someone know how开发者_Python百科 to do ? Thank\'sDoctrine_Core::getLoadedModels()[详细]
2023-03-22 03:07 分类:问答