Is there a way to take out the python sqlalchemy mappings from the model classes? Till now I was using Declarative mapping where the class will extend Declarative base. But now I want to map some models in a generated python module. So I can't modify the model classes.
- Should I be using the classical mapper that is the mapper() function?
- Does the classical mapping gives all the options as the declarative mapping?
- Is there a xml configuration way like the hibernate hbm.xml files?
Regards, Litty
autoloadargument to theTableconstructor. This is sort of equivalent to Hibernate's introspection feature, except that it's done at run-time instead of build-time. It may help you. – wberry Feb 8 '12 at 15:33