diff options
| -rw-r--r-- | doc/build/dialects/index.rst | 3 | ||||
| -rw-r--r-- | lib/sqlalchemy/dialects/mssql/base.py | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/build/dialects/index.rst b/doc/build/dialects/index.rst index 6f3d89f0c..e4a7e932f 100644 --- a/doc/build/dialects/index.rst +++ b/doc/build/dialects/index.rst @@ -76,6 +76,8 @@ Currently maintained external dialect projects for SQLAlchemy include: +---------------------------------------+---------------------------------------+ | Microsoft SQL Server (via python-tds) | sqlalchemy-tds_ | +---------------------------------------+---------------------------------------+ +| Microsoft SQL Server (via turbodbc) | sqlalchemy-turbodbc_ | ++---------------------------------------+---------------------------------------+ | MonetDB | sqlalchemy-monetdb_ | +---------------------------------------+---------------------------------------+ | SAP Hana | sqlalchemy-hana_ | @@ -107,3 +109,4 @@ Currently maintained external dialect projects for SQLAlchemy include: .. _gsheets: https://github.com/betodealmeida/gsheets-db-api .. _sqlalchemy-firebird: https://github.com/pauldex/sqlalchemy-firebird .. _sqlalchemy-cockroachdb: https://github.com/cockroachdb/sqlalchemy-cockroachdb +.. _sqlalchemy-turbodbc: https://pypi.org/project/sqlalchemy-turbodbc/ diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py index 0227e515d..9d0e5d322 100644 --- a/lib/sqlalchemy/dialects/mssql/base.py +++ b/lib/sqlalchemy/dialects/mssql/base.py @@ -9,6 +9,16 @@ :name: Microsoft SQL Server +.. _mssql_external_dialects: + +External Dialects +----------------- + +In addition to the above DBAPI layers with native SQLAlchemy support, there +are third-party dialects for other DBAPI layers that are compatible +with SQL Server. See the "External Dialects" list on the +:ref:`dialect_toplevel` page. + .. _mssql_identity: Auto Increment Behavior / IDENTITY Columns |
