SA dialect for MSSQL using PyODBC which handles MSSQL-specific limitations
Project description
sqlalchemy_pyodbc_mssql Readme
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:
parameterized queries with GROUP BY will not always work ([source](https://github.com/mkleehammer/pyodbc/issues/479))
stored procedures (such as those called by the prepared statements in pyodbc) are limited to 2100 parameters ([source](https://docs.microsoft.com/en-us/sql/sql-server/maximum-capacity-specifications-for-sql-server?view=sql-server-2017))
SQLAlchemy has a PyODBC dialect for MSSQL usage, but it also shares these limitations.
for GROUP BY details, see https://github.com/sqlalchemy/sqlalchemy/issues/4540
[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
see [SQLAlchemy instructions for PyODBC usage](https://docs.sqlalchemy.org/en/13/dialects/mssql.html#module-sqlalchemy.dialects.mssql.pyodbc)
- dialect name to use is mssql+pyodbc_mssql
- examples:
mssql+pyodbc_mssql://<username>:<password>@<dsnname>
mssql+pyodbc_mssql://<username>:<password>@<dbname>?driver=SQL+Server+Native+Client+11.0
Changelog
0.1.1 released 2022-10-24
resolve cache warning from SQLAlchemy 1.4 (480007f)
0.1.0 released 2019-06-17
initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for sqlalchemy_pyodbc_mssql-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5f82776bc117e2a667c6715267f80edd242b35798009ef918596b55408dee6d |
|
MD5 | c326902ea3b9161de2da5a1dddb712b4 |
|
BLAKE2b-256 | 3b18b8c6c5752ce82484e6f78bc214d93f6b239c464847db521e289e0c231bab |
Hashes for sqlalchemy_pyodbc_mssql-0.1.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1876b0e81bdfd53ced0ea1e2ebc489c3ed90afb174ceb87c8269426dc163687f |
|
MD5 | 1065a8aa2bdecd26f699236700e220db |
|
BLAKE2b-256 | b158bbf9f7d2f086f416f16782169b3c302572ca515fd98c3e222530d5d44942 |