On Wed, 20 Nov 2013, Michael Bayer wrote:
+--
| For SQLAlchemy questions, come on over to our list at
| https://groups.google.com/forum/#!forum/sqlalchemy .
+--
Thanks, I'll bookmark that!
Your suggestion of using echo='debug' got me through the logjam.
My coworker came up with the right value for the schema argument
to .reflect(), and I can see the tables now.
Here are the relevant lines that worked:
================================================================
eng=engine.create_engine(dsn)
meta=schema.MetaData(bind=eng)
meta.reflect(schema='foo')
----------------------------------------------------------------
The meta.tables.keys() values have the form u'foo.TABLE', but
that's no problem.
Thank you very much! If you hadn't helped me, I wouldn't
have known where to turn next.
With gratitude,
John Shipman, Web Developer, National Radio Astronomy Observatories;
[email protected], http://www.nmt.edu/~shipman/
_______________________________________________
DB-SIG maillist - [email protected]
https://mail.python.org/mailman/listinfo/db-sig