SQLAlchemy
Last updated
Was this helpful?
Last updated
Was this helpful?
Engines = manage Pools and Dialects.
creating an engine does not connect to the database instantly
Opening and maintaining new connections is expensive
Easier management of # of connections simultaneously.
session = exec ORM sql query
connection = exec RAW sql query
modifications ORM tracked & applied to DB.
guarantee the database consistency.