python - Is it possible to use pypyodbc with SQLAlchemy/alembic? -
i have misfortune of being stuck db2 on as400.
fortunately, can connect pypyodbc on windows , linux (through unixodbc).
i use alembic handle table migrations. of course there's no dialect db2 on iseries, plan on doing this:
from sqlalchemy.sql import text conn = op.get_bind() conn.execute(text('''create table blah_blah (stuff );'''))
though i'm not sure if alembic able create/insert stuff version table on database...
is possible (without like, patching alembic/sqlalchemy)?
Comments
Post a Comment