Skip to content

Commit 96e2226

Browse files
committed
Merge pull request mattmakai#8 from nagyv/patch-1
Added section about ORMs
2 parents 78a47ef + fe62684 commit 96e2226

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
@@ -96,6 +96,16 @@ needs.
9696
with managed, backed up, replicated, and auto-patched MySQL instances. Cloud
9797
SQL integrates with Google App Engine but can be used independently as well.
9898

99+
Object-Relational Mapping
100+
--------------------------
101+
102+
Often you might want to simplify accessing your data, and prefer a simple,
103+
object oriented way to manipulate your data, instead of raw SQL queries.
104+
105+
This is solved by Object Relational Mapping (ORM) applications. Sometimes these
106+
are integrated with your framework of choice, but you might use them without
107+
general frameworks too. Probably, the most widely used stand-alone ORM written
108+
for Python is `SQLAlchemy <http://www.sqlalchemy.org/>`_.
99109

100110
Database resources
101111
==================

0 commit comments

Comments
 (0)