because I'm using an old MySQL version that is waiting for storage_engine
and not default_storage_engine
I've tried to add storage_engine in configuration but the
default_storage_engin is still used, maybe in addition to storage_engine,
and so still generate the error
{{{
DATABASES:{
'default':{}
'mysqldb': {
'ENGINE': 'django.db.backends.mysql',
'HOST': '<url>',
'PORT': '3306',
'USER': '<user>',
'PASSWORD': '<password>',
'NAME': 'bi_entrepot',
'STORAGE_ENGINE': 'MyISAM',
'OPTIONS': {
'init_command': 'SET storage_engine=MyISAM',
}
}
}}}
I looked for solution but didn't find any way to solve my situation
because I have to use this old version of MySQL
--
Ticket URL: <https://code.djangoproject.com/ticket/33827>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* component: Uncategorized => Database layer (models, ORM)
--
Ticket URL: <https://code.djangoproject.com/ticket/33827#comment:1>