Hi,
Well you can use non relational databases with django. This of
course means that you don't have ORM for that, use them as is. Way
simpler than trying to force ORM (which stands for object
relational mapper) to follow something non relational.
I want to use MongoDB with Django. Which are the advisable, latest and stable engines?
I found https://github.com/django-nonrel/mongodb-engine which requires the non relational version of Django (https://github.com/django-nonrel/django/). But they have not updated the code since Django 1.6.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/f2a605c0-bcd9-45e9-8927-f9c8f09bc95b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Jani Tiainen
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/92c41fc9-7a2d-4a59-b7ac-132450dd63ef%40googlegroups.com.
Hi,
Django ORM is designed for relational data, for database engines
like Postgres, MySQL, Oracle etc. MongoDB is document oriented
database. In theory partial support for relational data could be
implemented to be able to use mongodb but it would be relative
way. Which leads to question that other response asked, if you
want ORM and relational data, why not to use real relational
database which works perfectly with Django ORM from the beginning?
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/92c41fc9-7a2d-4a59-b7ac-132450dd63ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Jani Tiainen