0👍
✅
Sorry, I forgot to add the answer earlier. I was testing this in Oracle XE. Once I moved away from XE, it started working properly. Also, we started using Oraclepool along with it – I now don’t remember whether it was the oraclepool or XE move which got it to work, but together anyways it is working now
👤Raju
2👍
You must add the instruction “threaded” in the “settings.py” file. like this:
DB_QUALITY = {
'ENGINE': 'django.db.backends.oracle',
'NAME': 'instance',
'USER': 'user',
'PASSWORD': 'xxxxxxx',
'HOST': '0.0.0.0',
'PORT': '1521',
'OPTIONS': {'threaded': True}
}
DATABASES = {
'default': DB_QUALITY,
}
- [Django]-How to programatically add product images in django oscar?
- [Django]-GetStream (Django) – Cannot Enrich Notification Feed
- [Django]-Parsing json object sent with Ajax GET method in Django
- [Django]-How to get requested user in clean function in django forms?
- [Django]-South appears to be loading initial_data.json twice
Source:stackexchange.com