Re: Non relational databases (MongoDB) with Django

2017-09-12 Thread Nes Dis
Hello If you are looking for a way to connect MongoDB to Django, You should take a look at djongo a driver for allowing Django to use MongoDB as the database backend. You dont need a non-rel version of Django to go with it either!!! On Wednesday, 17 August 20

Re: Non relational databases (MongoDB) with Django

2016-11-09 Thread SiamDjango
I was wondering if you end up using MongoDB with Django, did you use non relational version of Django? how was your experience? On Wednesday, August 17, 2016 at 1:28:31 AM UTC-7, Deep Shah wrote: > > I want to use MongoDB with Django. Which are the advisable, latest and > stable engines? > I fo

Re: Non relational databases (MongoDB) with Django

2016-08-17 Thread Jani Tiainen
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

Re: Non relational databases (MongoDB) with Django

2016-08-17 Thread Avraham Serour
Why do you need to use mongodb? Why not just use postgres and all the tooling the django ORM provides? On Wed, Aug 17, 2016 at 3:32 PM, Deep Shah wrote: > How easy is it to use MongoDb without a Django ORM once the code base > increases? > > > > > On Wednesday, August 17, 2016 at 5:25:01 PM UTC

Re: Non relational databases (MongoDB) with Django

2016-08-17 Thread Deep Shah
How easy is it to use MongoDb without a Django ORM once the code base increases? On Wednesday, August 17, 2016 at 5:25:01 PM UTC+5:30, Jani Tiainen wrote: > > 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

Re: Non relational databases (MongoDB) with Django

2016-08-17 Thread Jani Tiainen
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. Also, if you're not stuck at mongodb, you may