~openerp-vietnam/openobject-doc/technical-tutorial

« back to all changes in this revision

Viewing changes to build/html/_sources/part_4/orm.txt

  • Committer: Najlaâ EL KHAYAT
  • Date: 2009-04-07 12:47:35 UTC
  • Revision ID: nel@tinyerp.com-20090407124735-fvnl6acj42fhff34
doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
The ORM - Object Relation Model
 
2
===============================
 
3
 
 
4
The Models
 
5
-----------
 
6
 
 
7
ORM is for Object-Relational Mapping.
 
8
 
 
9
OpenERP modeling is based on "objects" but is data is stored in a classical relational database named Postgresql.
 
10
 
 
11
ORM job is to fill the gap between Open-objects and sql tables.
 
12
 
 
13
Python is the programming langage giving the behavior and data description of Open-objects (This is not stored in the database). "ORM" is the python class ancestor of all Open-objects.
 
14
 
 
15
A Open-object is modeling by a static python description for his behavior and data, an a miror sql description for his data storage.