Skip to content

Doctrine database configuration and the Symfony book #19196

Closed
@AscanderS

Description

@AscanderS

This is a discrepancy between the Symfony book and Symfony version 2.8 (at least) which is very disturbing for someone trying Symfony with PostgreSQL for the first time.

On page http://symfony.com/doc/2.8/book/doctrine.html It is explained that setting database_driver on app/config/parameters.yml allows to choose a driver.

# app/config/parameters.yml
parameters:
    database_driver:    pdo_mysql

However, parameter database_driver is not used (at least in version 2.8) since in app/config/config.yml you find that pdo_mysql is wired:

# app/config/config.yml
doctrine:
    dbal:
        driver:   pdo_mysql

The solution would be, on new projects, to add database_driver parameter in app/config/parameters.yml and change app/config/config.yml to use database_driver parameter:

# app/config/parameters.yml
parameters:
    database_driver:    pdo_mysql
...
# app/config/config.yml
doctrine:
    dbal:
        driver:   "%database_driver%"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions