On Thu, Aug 17, 2017 at 8:03 AM, <[email protected]> wrote: > Does anyone know how to connect to an Ingres DB using SQLAlchemy? I am able > to use pyodbc to connect in Python. As Ingres is not supported does this > mean I can't easily connect to it from SQLAlchemy?
that is what that means, yes. a google search found two very old projects that definitely are way too out of date to work today (though may very well have useful code: https://pypi.python.org/pypi/ingres_sa_dialect , https://bitbucket.org/squeaky/sqlalchemy-ingres/overview ). someone would have to pick up the work of composing a new dialect for this backend. It does say it's a commercially supported platform on the current ingres site I can find https://www.actian.com/ so that would indicate there's a commercial path to having such a driver composed. > > -- > SQLAlchemy - > The Python SQL Toolkit and Object Relational Mapper > > http://www.sqlalchemy.org/ > > To post example code, please provide an MCVE: Minimal, Complete, and > Verifiable Example. See http://stackoverflow.com/help/mcve for a full > description. > --- > You received this message because you are subscribed to the Google Groups > "sqlalchemy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/sqlalchemy. > For more options, visit https://groups.google.com/d/optout. -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description. --- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
