Hi Folks, In my current environment, I get one database connection per web application. That connection has to access tables in a data warehouse as well as an application specific database. Both databases live on the same SQL Server instance.
It seems as though I can't use the sql generation component to access tables from both databases at the same time. I am able to do this in my hand-written SQL by fully qualifying the tables names as "database.owner.table". I have tried using this fully qualified name as the table name and also using "database.owner" as the schema argument to the constructor, but neither works. I also noticed that there is an owner argument to the constructor, but that doesn't seem to do the trick. Is this at all possible right now? Thanks, Matthew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" 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/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
