Skip to content

Commit

Permalink
Merge pull request pallets#869 from christophersu/doc-fix-1
Browse files Browse the repository at this point in the history
Add missing import on SQLAlchemy documentation page
  • Loading branch information
kennethreitz committed Mar 21, 2014
2 parents 7f5b6c6 + 9cecf0d commit 7e4d51c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/patterns/sqlalchemy.rst
Expand Up @@ -185,6 +185,8 @@ you basically only need the engine::
Then you can either declare the tables in your code like in the examples
above, or automatically load them::

from sqlalchemy import Table
users = Table('users', metadata, autoload=True)

To insert data you can use the `insert` method. We have to get a
Expand Down

0 comments on commit 7e4d51c

Please sign in to comment.