~xrg/openobject-doc/trunk-xrg

« back to all changes in this revision

Viewing changes to i18n/vi/source/developer/2_5_Objects_Fields_Methods/orm.rst

  • Committer: TruongSinh Tran
  • Date: 2009-07-17 18:59:45 UTC
  • Revision ID: truongsinh@vipescoserver-20090717185945-ajjp3zso6xh5jddm
[FIX]private issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
.. i18n: The ORM - Object Relation Model
 
3
.. i18n: ===============================
 
4
 
 
5
The ORM - Object Relation Model
 
6
===============================
 
7
 
 
8
.. i18n: The Models
 
9
.. i18n: -----------
 
10
 
 
11
The Models
 
12
-----------
 
13
 
 
14
.. i18n: ORM is for Object-Relational Mapping.
 
15
 
 
16
ORM is for Object-Relational Mapping.
 
17
 
 
18
.. i18n: OpenERP modeling is based on "objects" but is data is stored in a classical relational database named Postgresql.
 
19
 
 
20
OpenERP modeling is based on "objects" but is data is stored in a classical relational database named Postgresql.
 
21
 
 
22
.. i18n: ORM job is to fill the gap between Open-objects and sql tables.
 
23
 
 
24
ORM job is to fill the gap between Open-objects and sql tables.
 
25
 
 
26
.. i18n: 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.
 
27
 
 
28
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.
 
29
 
 
30
.. i18n: A Open-object is modeling by a static python description for his behavior and data, an a miror sql description for his data storage. 
 
31
 
 
32
A Open-object is modeling by a static python description for his behavior and data, an a miror sql description for his data storage.