summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/mssql/pymssql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-08-19 10:16:34 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-08-19 10:16:34 -0400
commit319e5a3d8e92ccc97faeeaecd55313131e5a611b (patch)
treed6a577b8d53e2a75e631eee1c6d76912fa932223 /lib/sqlalchemy/dialects/mssql/pymssql.py
parent7f99c4ab55a80ee428b3466e9fa476d6ea03bfaf (diff)
downloadsqlalchemy-319e5a3d8e92ccc97faeeaecd55313131e5a611b.tar.gz
remove notes re: current pymssql DBAPI features
Fixes: #8337 Change-Id: Ib0c107bb386489dcb6d1683f29d0a9574dd96f1e
Diffstat (limited to 'lib/sqlalchemy/dialects/mssql/pymssql.py')
-rw-r--r--lib/sqlalchemy/dialects/mssql/pymssql.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/pymssql.py b/lib/sqlalchemy/dialects/mssql/pymssql.py
index e211c1461..96d03a908 100644
--- a/lib/sqlalchemy/dialects/mssql/pymssql.py
+++ b/lib/sqlalchemy/dialects/mssql/pymssql.py
@@ -21,24 +21,6 @@ pymssql is a Python module that provides a Python DBAPI interface around
pymssql is currently not included in SQLAlchemy's continuous integration
(CI) testing.
-Modern versions of this driver worked very well with SQL Server and FreeTDS
-from Linux and were highly recommended. However, pymssql is currently
-unmaintained and has fallen behind the progress of the Microsoft ODBC driver in
-its support for newer features of SQL Server. The latest official release of
-pymssql at the time of this document is version 2.1.4 (August, 2018) and it
-lacks support for:
-
-1. table-valued parameters (TVPs),
-2. ``datetimeoffset`` columns using timezone-aware ``datetime`` objects
- (values are sent and retrieved as strings), and
-3. encrypted connections (e.g., to Azure SQL), when pymssql is installed from
- the pre-built wheels. Support for encrypted connections requires building
- pymssql from source, which can be a nuisance, especially under Windows.
-
-The above features are all supported by mssql+pyodbc when using Microsoft's
-ODBC Driver for SQL Server (msodbcsql), which is now available for Windows,
-(several flavors of) Linux, and macOS.
-
""" # noqa
import re