Tagged Questions
5
votes
3answers
392 views
Should we have a database independent SQL like query language in Django?
Note :
I know we have Django ORM already that keeps things database independent and converts to the database specific SQL queries.
Once things starts getting complicated it is preferred to write raw ...
4
votes
4answers
350 views
What are the options when Sql generated by ORM needs tuning?
I am starting working on a web project using django. While researching whether to use Sqlalchemy or raw sql when django orm is not sufficient which is also a question I asked here
Raw Sql vs ...
3
votes
1answer
1k views
Raw Sql vs SqlAlchemy when Django ORM is not enough
In a django project, if a situation comes that Django ORM is not able to execute some complex queries then there are 2 options:
Use Raw Sql queries
Use SqlAlchemy
I want to know if there are ...