tags:

views:

42

answers:

1

What exactly is MetaData SQLAlchemy? I have hard time understanding.

And what is the difference between MetaData and Engine?

Thanks, Boda Cydo.

+4  A: 

Metadata is a collection of table definitions. Engine is the dialect and connection details of a specific database, along with a connection pool that holds any connections already established with that database.

Ants Aasma
Thanks for the answer. I didn't realize Metadata was a collection of table definitions. But I had intuition that Engine was just that.
bodacydo