Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

  1. Should I be using the classical mapper that is the mapper() function?
  2. Does the classical mapping gives all the options as the declarative mapping?
  3. Is there a xml configuration way like the hibernate hbm.xml files?

Regards, Litty

share|improve this question
2  
The answers a "yes", "yes" and "no". Perhaps you should ask for some more details or examples or something that is more helpful to solving your problem. What part of the SQLAlchemy documentation is confusing? – S.Lott Feb 8 '12 at 13:52
This is a question during my initial investigation. Just wanted to confirm these from experts. My intent was to use xml based mapping if one is available; else make sure that whatever is possible with declarative is possible with classical as well.Thanks for your answers. – Litty Feb 8 '12 at 14:58
Check out the autoload argument to the Table constructor. 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
@LItty: You really should update the question to explain what you really want to know. It can't be trivial "yes", "yes", "no" kinds of things. Was the SQLAlchemy documentation confusing in some way? Was there parts that weren't clear? Can you update the question to explain what part of the SQLAlchemy documentation confused you? – S.Lott Feb 8 '12 at 16:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.