diff options
Diffstat (limited to 'reveal.js/sqlalchemy.html')
| -rwxr-xr-x | reveal.js/sqlalchemy.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/reveal.js/sqlalchemy.html b/reveal.js/sqlalchemy.html index 956538f..4bafccd 100755 --- a/reveal.js/sqlalchemy.html +++ b/reveal.js/sqlalchemy.html | |||
| @@ -67,10 +67,9 @@ | |||
| 67 | 67 | ||
| 68 | <section> | 68 | <section> |
| 69 | <h2>Basic architecture</h2> | 69 | <h2>Basic architecture</h2> |
| 70 | <p><em>SQLAlchemy</em> consists of several components, including the SQL expression language and the ORM.</p> | 70 | <p><em>SQLAlchemy</em> consists of several components, including the the <em>ORM</em>.</p> |
| 71 | <p>In order to enable these components, <em>SQLAlchemy</em> also provides an <em>Engine</em> class and <em>MetaData</em> class.</p> | ||
| 72 | <ul> | 71 | <ul> |
| 73 | <li><em>Engine</em>- manages the <em>SQLAlchemy</em> connection pool and the database-independent SQL dialect layer</li> | 72 | <li><em>Engine</em>- manages the connection pool and the RDBMS-independent SQL dialect layer</li> |
| 74 | <li><em>MetaData</em> - used to collect and organize information about your table layout (schema)</li> | 73 | <li><em>MetaData</em> - used to collect and organize information about your table layout (schema)</li> |
| 75 | <li><em>Session</em> - establishes all conversations with the RDBMS and represents a "holding zone" for all the objects which you've loaded or associated with it during its lifespan</li> | 74 | <li><em>Session</em> - establishes all conversations with the RDBMS and represents a "holding zone" for all the objects which you've loaded or associated with it during its lifespan</li> |
| 76 | <li><em>SQL expression language</em> - provides an API to execute your queries and updates against your tables, all from Python, and all in a database-independent way (low-level interface)</li> | 75 | <li><em>SQL expression language</em> - provides an API to execute your queries and updates against your tables, all from Python, and all in a database-independent way (low-level interface)</li> |
