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 any trick to this? On my MySQL box I have 2 logical databases, let's say people and places, and each database has lots of different tables.

Is there any way to create a ForeignKey from a table in one database to the other? In the MySQL prompt this is no problem, you just write dbname.tablename.colname and everything works just fine.

But this gives me sass in SQLAlchemy, saying it can't find the towns table:

Column('town_id', Integer, ForeignKey('places.towns.id'))

Is there any way to make this work?

share|improve this question

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.