Database Programming with SQLAlchemy (original) (raw)
Course Data
| Course name: | SQLAlchemy Course |
|---|---|
| Course length: | 1 day |
| Remote: | Yes |
| Open course: | Yes |
| In-house: | Yes |
| Course ID: | ALE |
| German course | here |
Course Finder
Find the right course for your needs..
Combining Topics
Company courses allow to assemble trainings combining topics from different courses.
Course Topics Overview as PDF
You can download our flyer. It has an overview of all our course topics.
Motivation¶
SQLAlchemy is THE object relational mapper used in the Python world. It provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language.
This practical course will make sure you understand the concepts behind SQLAlchemy. We will focus on practical patterns of SQLAlchemy usage and see how its use can grow from very simple to more advanced.
Course Content¶
Get to know SQLAlchemy¶
We will start with an overview of the terminology used in SQLAlchemy, such as drivers, connectors, engines, metadata, sessions, tables and mappers.
Simple statements¶
An overview of how the basic SQL statements can be generated from SQLAlchemy and how SQLAlchemy can simplify our life when we need to write those statements.
Simple ORM¶
Set up an object relational mapping and experiment with the life cycle an object goes through when it is mapped by SQLAlchemy to the database. This can be be done using plain SQLAlchemy or Declarative or Elixir.
SQLAlchemy Philosophy¶
Next we need to understand a bit of the philosophy behind SQLAlchemy and to study its different usage patterns. Know what is possible with SQLAlchemy and where to look for in its documentation. This will help us when being faced with more advanced topics.
Advanced statements¶
See how SQLAlchemy allows us to keep even advanced database usage reasonably simple and experience the true power of SQLAlchemy.
ORM and relations¶
Experience how relations between mapped objects behave and look at the options both the database and SQLAlchemy offer.
Advanced ORM¶
Experiment with non trivial mapping issues, such as inheritance, arbitrary selects and arbitrary relations. In this part we will also study the use of transactions in combination with the ORM.
Exercises¶
The participants can follow all steps directly on their computers. There are exercises at the end of each unit providing ample opportunity to apply the freshly learned knowledge.
Course Material¶
Every participant receives comprehensive materials in PDF format that cover the whole course content as well as all source code.
Intended Audience¶
Programmers with basic Python knowledge or after taking other courses such asPython for Programmers.
Prerequisites¶
- Basic knowledge of Python and object oriented programming is required. If you don’t know Python it is strongly recommended to takePython for Programmers before this course.
- Basic knowledge of SQL is necessary.