Only recently started using python, and I like it! However, I am stuck with SqlAlchemy.
I am trying to write a script that reads an MS SQL database, query a table (a
See Creating and Dropping Database Tables:
Creating … individual tables can be done via the
create()… method ofTable.
For reading the source structure, see Reflecting Database Objects:
A
Tableobject can be instructed to load information about itself from the corresponding database schema object already existing within the database.
[…]
The reflection system can also reflect views.