I’m looking at exploring Doctrine. Seems like the examples I have found assumes Doctrine will create the tables I need. I like to design my databases using MySQL Workbench. Can I just give the MySQL create script to Doctrine?
I’m looking at exploring Doctrine. Seems like the examples I have found assumes Doctrine
Share
if you use Doctrine2 ORM you should forget about sql totally. ORM is object relational mapper in its nature all you should know about is your objects and relations between them. And I think that answers your question. If you use ORM design your database using objects, not sql.