Re: [sqlalchemy] SQLAlchemy Foreign Key Issues with Db2

2018-10-12 Thread Mike Bayer
hi there - for DB2 issues that's an external dialect supported by IBM, please post at https://groups.google.com/forum/#!forum/ibm_db On Fri, Oct 12, 2018 at 11:46 AM Brian T wrote: > > I'm running SQLAlchemy 1.2.12. When trying to autoload a DB2 table, it gives > me a "no such table" error

[sqlalchemy] SQLAlchemy Foreign Key Issues with Db2

2018-10-12 Thread Brian T
I'm running SQLAlchemy 1.2.12. When trying to autoload a DB2 table, it gives me a "no such table" error for a table referenced in a foreign key, even though that table exists. import sqlalchemy cnxstr = 'ibm_db_sa://xyzzy' db2 = sqlalchemy.create_engine(cnxstr) meta =