M
M
mkone1122021-09-30 18:35:56
Django
mkone112, 2021-09-30 18:35:56

Is there software that makes writing django orm queries easier?

I am supporting a project where django-orm is mainly used. Thousands of tables, billions of records, requests processed for days on huge clusters, and all that. Requests can be n pages long. When I wrote in pure sql, I really liked navicat and datagrip, although they were not a silver bullet, they still greatly reduced the headache. Is there something similar for django orm, and orm in general? Pycharm's support is too clumsy for me.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey Gornostaev, 2021-09-30
@mkone112

I'm 100% sure it's not.

G
Griboks, 2021-10-01
@Griboks

Why didn't you create 4 separate questions for your 4 problems?

requests processed for days on huge clusters, and all that

there is only one solution - to write sql manually
Requests can be n pages long

So you are spelling wrong. The meaning of orm is to be more convenient than sql.
Pycharm's support is too clumsy for me.

PyCharm supports python, not orm. Therefore, you need to correctly design models, prescribe types, etc.
Is there something similar for django orm, and orm in general?

orm is a wrapper over just this something similar. You can still use some kind of visual/external editor, and datagrip seems to be installed as a plugin in the pro version of pycharm. But then why do you need orm?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question