Skip to content

Connection charset not applied when loading fixtures #314

Open
@nzurita

Description

@nzurita

In Symfony 4.4, I have a fixture load class, and execute it via bin/console doctrine:fixtures:load --append. The values loaded in database are incorrectly encoded.

The database and tables are UTF8. The text file containing the loader is also UTF8 encoded, the connection is supposed to be configured as UTF8 (maybe the syntax for this changed in latter versions?).

These are some relevant parts of my code:

The string in the loader script (note the euro symbol):

$documentContent = [ 'content' => 'Lorem ipsum %CONTRACT_AMOUNT% €'];

File config/packages/doctrine.yaml:

doctrine:
    dbal:
        url: '%env(resolve:DATABASE_URL)%'
        charset: "utf8"

Values in database:

Lorem ipsum %CONTRACT_AMOUNT% �

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