How can I properly switch the newly installed Symfony 1.4 framework from Doctrine (that it is configured for by default) to Propel?

link|improve this question

25% accept rate
feedback

4 Answers

up vote 5 down vote accepted

If you create new (fresh) project...

symfony generate:project xxx --orm=Propel

The easiest thing :)

If you want to change existing project - you have to dig in configuration file and enable propel plugin.

Your configuration file should look similar to:

// config/ProjectConfiguration.class.php
public function setup()
{
  $this->enablePlugins('sfPropelPlugin');
  ...
}

(based on Symfony page, you should dig it next time - especially Practical Symfony)

link|improve this answer
2  
BTW, if you're starting new project, I strongly recommend Doctrine. It's better. – Tomasz Struczyński Dec 3 '09 at 14:01
1  
I agree with Tomasz. Don't use Propel. – Priidik Vaikla Dec 5 '09 at 17:37
1  
and Priidik: at least please give a few arguments, links etc. telling precisely why Doctrine is better than Propel (however after more than one year, arguments have certainly changed...). – Frosty Z Mar 8 '11 at 11:10
As a quick comment - it's probably better for Symfony as it is now the default ORM in Symfony and both teams works closely. At times I did research, Doctrine was much more actively developed (although Propel development fasten since that). – Tomasz Struczyński Mar 11 '11 at 10:03
I did the changes you mentioned, but after building the Propel DB, I get an error that "could no open propel.ini". In fact, I don't have that file (nevertheless, I have the doctrine.ini so, I guess, it was created when building all the project). Is there a way to fix this without creating a new project?. So far, haven't created tables in the DB. (EDIT:I'm using Symfony 1.4) (Also, following, but backwards this: trac.symfony-project.org/wiki/ConvertingPropelProjectToDoctrine) – Kani Feb 2 at 17:04
show 1 more comment
feedback

If you like chained object method calls that look like SQL statements, use Doctrine. If you like real objects that hide SQL, use Propel.

If you like creating criteria objects that then render themselves as WHERE clauses, use Propel. If you like creating WHERE clauses similar to SQL, use Doctrine.

You can use both at the same time, too. Not recommended, but if you use plugins like apostrophe that only use Doctrine, you might not have a choice.

link|improve this answer
thanks! yeah! correct. – Harish Kurup Sep 20 '10 at 14:04
feedback

Use Propel if you enjoy object-oriented syntax.

link|improve this answer
feedback

Replying to the contributors here who wholly recommend Doctrine: the decision is not clear cut, in my view. Propel now also supports chainable query methods, so if you like that approach then both are still in play. Also, the Propel team maintain that the generated nature of model objects makes it faster to run for most use-cases than Doctrine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.