#django-orm

[ follow ]
B-list
9 months ago
Python

Database functions in Django

SQL databases have built-in functions that can be used in query expressions.
Django's ORM supports standard functions and allows for custom functions to be written. [ more ]
Alexey Evseev
9 months ago
Python

SQLALchemy vs Django ORM

When switching from Django ORM to SQLAlchemy, unexpected behavior may arise due to differences in patterns and behavior.
Django follows the Active Record pattern, while SQLAlchemy follows the Unit of Work/Data Mapper pattern. [ more ]
[ Load more ]