Skip to content

Commit fe62684

Browse files
committed
Added section about ORMs
1 parent b2d0da5 commit fe62684

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

source/content/pages/databases.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,16 @@ needs.
6666
with managed, backed up, replicated, and auto-patched MySQL instances. Cloud
6767
SQL integrates with Google App Engine but can be used independently as well.
6868

69+
Object-Relational Mapping
70+
--------------------------
71+
72+
Often you might want to simplify accessing your data, and prefer a simple,
73+
object oriented way to manipulate your data, instead of raw SQL queries.
74+
75+
This is solved by Object Relational Mapping (ORM) applications. Sometimes these
76+
are integrated with your framework of choice, but you might use them without
77+
general frameworks too. Probably, the most widely used stand-alone ORM written
78+
for Python is `SQLAlchemy <http://www.sqlalchemy.org/>`_.
6979

7080
Database resources
7181
------------------

0 commit comments

Comments
 (0)