diff --git a/docs/patterns/sqlalchemy.rst b/docs/patterns/sqlalchemy.rst index 07a762d8..3c4d9ce9 100644 --- a/docs/patterns/sqlalchemy.rst +++ b/docs/patterns/sqlalchemy.rst @@ -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