#31969: 'database' option in conf file not working
-------------------------------------+-------------------------------------
Reporter: komaljeet | Owner: nobody
Type: Bug | Status: closed
Component: Database layer | Version: 3.1
(models, ORM) | Resolution:
Severity: Normal | worksforme
Keywords: | Triage Stage:
| Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by felixxm):
* status: new => closed
* resolution: => worksforme
* component: Uncategorized => Database layer (models, ORM)
Comment:
It works for me with [https://docs.djangoproject.com/en/3.1/ref/databases
/#connecting-to-the-database the configuration described in docs]:
- `settings.py`:
{{{
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'OPTIONS': {
'read_default_file': '/django/tests/mysql.cnf',
}
}
}
}}}
- `/django/tests/mysql.cnf`
{{{
[client]
database = NAME
user = USER
password = PASSWORD
default-character-set = utf8
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/31969#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/067.034177acb2fdc9be1eafe182e3e4801a%40djangoproject.com.