Skip to content

Commit 27d58fa

Browse files
committed
adding sqlalchemy orm resource
1 parent 2fefa45 commit 27d58fa

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

all.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,6 +1293,12 @@ <h2>Flask resources</h2>
12931293
is a great walkthrough for a common use case of ensuring an email address
12941294
matches with the user's login information.</p>
12951295
</li>
1296+
<li>
1297+
<p>Most Flask developers use SQLAlchemy as an ORM to relational databases.
1298+
If you're unfamiliar with SQLAlchemy questions will often come up such as
1299+
<a href="http://stackoverflow.com/questions/4201455/sqlalchemy-whats-the-difference-between-flush-and-commit">what's the difference between flush and commit?</a>
1300+
that are important to understand as you build out your app.</p>
1301+
</li>
12961302
</ul>
12971303
<h2>Open source Flask example projects</h2>
12981304
<ul>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-02-28T15:40:01Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-01T10:09:21Z</updated></feed>

flask.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,12 @@ <h2>Flask resources</h2>
225225
is a great walkthrough for a common use case of ensuring an email address
226226
matches with the user's login information.</p>
227227
</li>
228+
<li>
229+
<p>Most Flask developers use SQLAlchemy as an ORM to relational databases.
230+
If you're unfamiliar with SQLAlchemy questions will often come up such as
231+
<a href="http://stackoverflow.com/questions/4201455/sqlalchemy-whats-the-difference-between-flush-and-commit">what's the difference between flush and commit?</a>
232+
that are important to understand as you build out your app.</p>
233+
</li>
228234
</ul>
229235
<h2>Open source Flask example projects</h2>
230236
<ul>

source/content/pages/04-web-development/03-flask.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,11 @@ book which is an excellent learning resource.
187187
is a great walkthrough for a common use case of ensuring an email address
188188
matches with the user's login information.
189189

190+
* Most Flask developers use SQLAlchemy as an ORM to relational databases.
191+
If you're unfamiliar with SQLAlchemy questions will often come up such as
192+
[what's the difference between flush and commit?](http://stackoverflow.com/questions/4201455/sqlalchemy-whats-the-difference-between-flush-and-commit)
193+
that are important to understand as you build out your app.
194+
190195

191196
## Open source Flask example projects
192197
* [Microblog](https://github.com/miguelgrinberg/microblog) is the companion

0 commit comments

Comments
 (0)