Today, Doctrine gained its citizenship in symfony 1.2. The sfDoctrinePlugin was linked via externals and is now officially bundled with symfony. If you've been around for a while, you'll know that this was highly anticipated and is a long time coming. To celebrate, I'll give a short little tutorial on how you can get started using Doctrine in symfony. Read below if you're interested.

Getting Started

Update config/databases.yml

all:
  doctrine:
    class:          sfDoctrineDatabase
    param:
      dsn:          mysql://root@localhost/dbname

Create config/doctrine/user.yml

User:
  columns:
    username: string(255)
    password: string(255)

Create data/fixtures/user.yml

User:
  User_1:
    username: jwage
    password: changeme

Create application

./symfony generate:app frontend

Build everything

./symfony doctrine:build-all-reload frontend

Inspect database with DQL Query

./symfony doctrine:dql frontend "FROM User u"
>> doctrine  executing: "FROM User u" ()
>> doctrine    id: '1'
>> doctrine    username: jwage
>> doctrine    password: changeme

Your data fixtures are loaded and your User model is ready to be used in your application. Couldn't be any easier!

What is to come?

  1. Official Documentation. symfony + Doctrine book.
  2. New features
  3. Doctrine training sessions by Sensio

Thanks to everyone who adopted Doctrine early and stood by the project through thick and thin. Without your dedication this would not be possible today. So, a big thanks goes out to the community.

Published in #Symfony