3
votes
3answers
319 views
Doctrine query memory usage
Doctrine appears to be taking well over 4MB of RAM to execute a single, simple query:
print memory_get_peak_usage()." <br>\n";
$q = Doctrine_Query::create()
->from('Directories d')
…
2
votes
4answers
106 views
PHP / Doctrine ORM multiple ‘one-to-one’ relations to the same class
Just working on a project where I have a class called 'Product' and a class called 'Image'. Each product has two types of images, one 'front' image and one 'back' image, so I defined two fields, one …
2
votes
2answers
85 views
Doctrine ORM: Create Table Like Another
Hello,
Is there any way, when using Doctrine, to create a table like another? I know in MySQL there is a function to do so:
CREATE TABLE user2 LIKE user;
and tables user and user2 will be …
2
votes
3answers
210 views
Behind the scenes: How does an ORM “think”?
I'm interested in some of the design behind Rails ActiveRecord, Doctrine for PHP (and similar ORMs).
How does an ORM manage to accomplish features like chained accessors and how deep are they …
2
votes
3answers
1k views
Integrate Doctrine with Zend Framework 1.8 app
I'm interested in using Doctrine as an ORM for a new Zend Framework app I'm writing. I'm trying to figure out the best way to integrate it as straightforward as possible. Every example I find is …
2
votes
1answer
330 views
Why overriding Doctrine_Record::save() give me a strict standard error in Symfony 1.2 ?
I have the following model :
class Model extends BaseModel
{
public function save($conn = null)
{
if(!$this->getId())
{
//do stuff
}
return …
2
votes
2answers
431 views
Why am I getting “validator failed” one a save with Doctrine on Symfony 1.2 ?
Let's say that I have YAML scheme looking like that :
Note:
options:
type: MyISAM
collate: utf8_unicode_ci
charset: utf8
actAs: { Timestampable: ~ }
columns:
content: { type: …
1
vote
0answers
26 views
Symfony Fails opening my sfDoctrineDatabase.class.php
My problem is very simple, yet I feel lost while looking at it ...
I am currently working on a Symfony project located on an SVN repository.
It has worked well all day but suddenly it crashed...
Now …
1
vote
1answer
51 views
Why do i get a Circular Dependency Exception with these Zend_Application_Resources?
I keep getting the following exception with a new resource Im making and i cant figure out why:
PHP Fatal error: Uncaught exception 'Zend_Application_Bootstrap_Exception' with message 'Circular …
1
vote
3answers
48 views
Doctrine - subquery in from
I have query in mysql:
SELECT * FROM (
SELECT COUNT(*) AS count, t.name AS name
FROM tag t
INNER JOIN video_has_tag v USING (idTag)
GROUP BY v.idTag
ORDER BY count DESC
LIMIT …
1
vote
4answers
117 views
many-to-many relationship in doctrine
I've got some tables on my system like these:
news
--id
--title
--content
video
--id
--title
--url
album
--id
--title
Now, I need to do a many-to-many relatioship with this tables, but in a …
1
vote
1answer
69 views
Symfony : How to use widgets with i18n forms in backend (doctrine)
Hi everybody.
I can not manage to have both i18n and tinyMCE widgets on internationalised fields.
If i put both, i will have internationalised fields for all my objects' fields, but no tinyMCE for …
1
vote
3answers
166 views
Doctrine schema.yml generator
Hi,
I am pretty new to doctrine. I made two small projects with doctrine for my own but now I am about to create big project for my client. The project will have more than 50 tables. Is there any way …
1
vote
2answers
117 views
PHP Doctrine relationships and inheritance
Hi,
I've been looking at Doctrine and it seems like a good way to manage models in my OO PHP application.
I would like to create Models that have some optional properties. Rather than having null …
1
vote
3answers
91 views
Doctrine - How do you ask WHERE cond1 AND ( cond2 OR cond3)
While using Doctrine in a Symfony project I've come into the situation where I need to apply a condition and then one of two following conditions (which both happen to be sub-queries). I know of the …
