I've not used ActiveMapper so I can't help with your performance
problem here, but I do have a suggestion. If you are working with a
legacy database, then you should try to take advantage of SQLAlchemy's
ability to pull in all your table metadata automatically.
I'm not sure exactly how you could use this with ActiveMapper, but with
strait SQLAlchemy you could pull all your metadata using autoload=True:
actions_table = Table('actions', metadata, autoload=True)
contacts_table = Table('contacts', metadata, autoload=True)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---