On Mon, Nov 19, 2018 at 2:04 AM Abdallah Ally <[email protected]> wrote: > > Hello guys. Can I use sqlalchemy with Ms Access?
in theory, yes, in practice, uncertain. there's a dialect at https://bitbucket.org/zzzeek/sqlalchemy-access that probably is not in complete working order right now but can likely perform basic tasks with a little bit of effort. Another path to success is to export your access data to SQLite, which you can by exporting to CSV first then using a tool like http://www.sqliteexpert.com/ to import. Or you can write a simple tool to transfer from mdb to sqlite using pyodbc and sqlite3 Python APIs (but in that case you can probably get the MS Access dialect above working). > > -- > 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.
