Symfony + PostgreSQL 

http://www.symfony-project.org/forum/index.php?t=msg&th=11655

> create an application using the PostgreSQL?

Just add your PostgreSQL database credentials to ./config/databases.yml and ./config/propel.ini, remembering to set the database phptype type to pgsql. Everything else you do is the same - just work through the various examples and read the Symfony documentation.

superhaggis

Symfony + PostgreSQL 

Here I am making the connection:

//databases.yml
all:
  propel:
    class:          sfPropelDatabase
    param:
      dsn:          pgsql://user:passwd@localhost/base
//propel.ini
propel.database            = pgsql
propel.database.createUrl  = pgsql://user:passwd@localhost
propel.database.url        = pgsql://user:passwd@localhost/base

but I have some problems when I create a new project…

Problem solved. The problem was the structure of the file schema.yml

documented on: 09 April 2008, Alphax