From aaab0076daee6701a05a85e3f16c5cb638caa69a Mon Sep 17 00:00:00 2001
From: Iain-S <25081046+Iain-S@users.noreply.github.com>
Date: Mon, 2 Oct 2023 16:10:02 +0100
Subject: [PATCH] Add instructions for SQL Server
---
docs/source/faq.rst | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/source/faq.rst b/docs/source/faq.rst
index 3e6c546..2f816a1 100644
--- a/docs/source/faq.rst
+++ b/docs/source/faq.rst
@@ -13,5 +13,7 @@ Which DBMSs does SqlSynthGen support?
* SqlSynthGen most fully supports **PostgresSQL**, which it uses for its end-to-end functional tests.
* SqlSynthGen also supports **MariaDB**, as long as you don't set ``use-asyncio: true`` in your config.
* SqlSynthGen *might*, work with **SQLite** but this is largely untested.
+* SqlSynthGen may also work with SQL Server.
+ To connect to SQL Server, you will need to install `pyodbc `_ and an `ODBC driver `_, after which you should be able to use a DSN setting similar to ``SRC_DSN="mssql+pyodbc://username:password@hostname/dbname?driver=ODBC Driver 18 for SQL Server"``.
Please open a GitHub issue if you would like to see support for another DBMS.