sqlalchemy-pyodbc-mssql

SA dialect for MSSQL using PyODBC which handles MSSQL-specific limitations


License
BSD-3-Clause
Install
pip install sqlalchemy-pyodbc-mssql==0.1.1

Documentation

sqlalchemy_pyodbc_mssql Readme

https://circleci.com/gh/level12/sqlalchemy_pyodbc_mssql.svg?&style=shield

Overview

PyODBC is Microsoft's recommended DBAPI layer for connecting a python application to MSSQL. However, the layer is not MSSQL-specific, and so it has some limitations:

SQLAlchemy has a PyODBC dialect for MSSQL usage, but it also shares these limitations.

[PyMSSQL](http://www.pymssql.org) exists as an alternative DBAPI layer and dialect for SQLAlchemy. Since it prepares queries by rolling parameters into the query string itself (properly quoted, of course) rather than issuing ODBC prepared statements, it does not share the above problems.

sqlalchemy_pyodbc_mssql extends the built-in SQLAlchemy PyODBC dialect in order to work around these limits in a manner consistent with PyMSSQL's implementation. Most queries are passed as-is to PyODBC to be prepared and executed normally. Those that would not work, due to the above issues, are given special treatment to avoid the limitations and keep the app developer from needing to keep track of when to apply workarounds.

Usage

  • Installation
    • for usage in app: pip install sqlalchemy_pyodbc_mssql
    • to run tests: pip install sqlalchemy_pyodbc_mssql[tests]
  • Usage