djongo icon indicating copy to clipboard operation
djongo copied to clipboard

Django and MongoDB database connector

Results 171 djongo issues
Sort by recently updated
recently updated
newest added

#### djongo' isn't an available database backend ```python django.core.exceptions.ImproperlyConfigured: 'djongo' isn't an available database backend. Try using 'django.db.backends.XXX', where XXX is one of: 'mysql', 'oracle', 'postgresql', 'sqlite3' ```

I'm trying to integrate mongodb to a existing project which is using sqllite. This is the mongodb changes I added in settings.py to replace sqllite. ``` import mongoengine DATABASES =...

#### One line description of the issue #### Python script ```python access url /admin/user/user/?is_superuser__exact=1 DATABASES = { 'default': { 'ENGINE': 'djongo', 'NAME': 'testDB2', 'ENFORCE_SCHEMA': True, 'CLIENT': { 'host': '1.1.1.1', 'port':...

#### Looking for transaction support. In particular `with transaction.atomic():` and `.select_for_update()` This feature appears to be supported in [the docs](https://www.djongomapper.com/database-transactions/), but is not implemented in `transaction.py`. How can I go...

Now that djongo is compatible with Django 4.0.1 (https://github.com/doableware/djongo/pull/615), would that warrant a new version of the package in pypi?

error: ``` django.core.exceptions.ImproperlyConfigured: 'djongo' isn't an available database backend or couldn't be imported. Check the above exception. To use one of the built-in backends, use 'django.db.backends.XXX', where XXX is one...

Added a EmbeddedField supported some flexible behavior. It will not be always required to put the value over the model field. If you want to skip it put null=True, blank=True....

Hello, Sorry if it was asked but I can't delete my objects in the admin panel, it's throwing me this error : http://127.0.0.1:8000/admin/ours_agile/projet/ 3.2.4 ValueError Field 'id' expected a number...

#### One line description of the issue is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string #### Python script ```python class BaseFields(models.Model): _id...

Are there plans to add support for MongoDB 4.0 Transactions using Django's transaction capabilities?