Re: Django and MySQL NDB Cluster

2020-01-24 Thread Victor Guimarães Nunes
f settings.py DATABASES = { 'default': { # other stuff 'ENGINE': 'django_mysql_nosavepoint', } } That's it. Hope it helps someone Em quarta-feira, 22 de janeiro de 2020 17:19:42 UTC-3, Victor Guimarães Nunes escreveu: > > Hi, > > I'm having some trouble setting up a Django project wi

Re: Django and MySQL NDB Cluster

2020-01-23 Thread Victor Guimarães Nunes
backend I would be glad. Thank you all! Em quarta-feira, 22 de janeiro de 2020 17:19:42 UTC-3, Victor Guimarães Nunes escreveu: > > Hi, > > I'm having some trouble setting up a Django project with a MySQL NDB > Cluster. I found I had to set the storage engine on > DATABASES['

Re: Django and MySQL NDB Cluster

2020-01-23 Thread Victor Guimarães Nunes
/]about.me/maninder.s.kumar > <http://about.me/maninder.s.kumar?promo=email_sig> > > > > > On Thu, Jan 23, 2020 at 1:49 AM Victor Guimarães Nunes < > nuness...@gmail.com > wrote: > >> Hi, >> >> I'm having some trouble setting u

Re: Django and MySQL NDB Cluster

2020-01-23 Thread Victor Guimarães Nunes
Will do Em quarta-feira, 22 de janeiro de 2020 18:32:04 UTC-3, Jason escreveu: > > https://code.djangoproject.com/ticket/27677 > > Check the last comment from Tim. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Django and MySQL NDB Cluster

2020-01-22 Thread Victor Guimarães Nunes
Hi, I'm having some trouble setting up a Django project with a MySQL NDB Cluster. I found I had to set the storage engine on DATABASES['default']['OPTIONS'] and I did it. DATABASES = { 'default': config('DATABASE_URL', cast=db_url) } # Check if mysql database engine is NDBCLUSTER if