+ 4
Orm
How know what is Orm in django?
1 Réponse
0
I don't know how it's done in Django but from my experience in PHP....
Object relational mapping(ORM) is a design pattern in which entities of a database are represented as objects in a program and each field is represented as object attributes. Changes made to the objects will be saved in a persistence layer and can be flushed to enforce the change in the real database.