Skip to content

Commit b428df9

Browse files
committed
Clarify support options
1 parent 29c6cbe commit b428df9

4 files changed

Lines changed: 48 additions & 11 deletions

File tree

docs/connect/node-js/node-js-driver-for-sql-server.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: "Node.js Driver for SQL Server | Microsoft Docs"
2+
title: "Node.js Driver for SQL Server"
33
description: "The tedious module is an open source, JavaScript implementation of the TDS protocol, which is supported by all modern versions of SQL Server."
44
ms.custom: ""
5-
ms.date: "08/08/2017"
5+
ms.date: "10/06/2020"
66
ms.prod: sql
77
ms.prod_service: connectivity
88
ms.reviewer: ""
@@ -21,19 +21,28 @@ The tedious module is a JavaScript implementation of the TDS protocol, which is
2121
You can connect to a SQL Database using Node.js on Windows, Linux, or macOS.
2222

2323
## Getting started
24+
2425
* [Step 1: Configure development environment for Node.js development](step-1-configure-development-environment-for-node-js-development.md)
2526
* [Step 2: Create a SQL database for Node.js development](step-2-create-a-sql-database-for-node-js-development.md)
2627
* [Step 3: Proof of concept connecting to SQL using Node.js](step-3-proof-of-concept-connecting-to-sql-using-node-js.md)
2728

2829
## Documentation
2930

3031
[Tedious module documentation on GitHub](https://tediousjs.github.io/tedious/)
32+
33+
## Support
34+
35+
Tedious for Node.js is community supported software. Microsoft contributes to the tedious open-source community and is an active participant in the repository at [https://github.com/tediousjs/tedious](https://github.com/tediousjs/tedious). However, this software does not come with Microsoft support.
36+
37+
To get help, file an [issue in the tedious GitHub repository](https://github.com/tediousjs/tedious/issues) or visit other Node.js community resources:
3138

3239
## Community
40+
3341
* [Azure Node.js Developer Center](https://azure.microsoft.com/develop/nodejs/)
3442
* [Get Involved at nodejs.org](https://nodejs.org/en/get-involved/)
3543

3644
## Code examples
45+
3746
* [Getting Started with Node.js on Windows](https://www.microsoft.com/sql-server/developer-get-started/node/windows/)
3847
* [Getting Started with Node.js on macOS](https://www.microsoft.com/sql-server/developer-get-started/node/mac/)
3948
* [Getting Started with Node.js on Ubuntu](https://www.microsoft.com/sql-server/developer-get-started/node/ubuntu/)
Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: "Python SQL Driver - pymssql"
3-
description: "This guide describes installing Python, the Microsoft ODBC Driver for SQL Server, and pyODBC. Then using the sample code, connect to and interact with a SQL database."
3+
description: "This guide describes installing Python, the ODBC Driver for SQL Server, and pymssql. Sample code shows how to connect to and interact with a SQL database."
44
ms.custom: ""
5-
ms.date: "01/19/2017"
5+
ms.date: "10/06/2020"
66
ms.prod: sql
77
ms.prod_service: connectivity
88
ms.reviewer: ""
@@ -13,13 +13,24 @@ author: David-Engel
1313
ms.author: v-daenge
1414
---
1515
# Python SQL Driver - pymssql
16+
1617
[!INCLUDE[Driver_Python_Download](../../../includes/driver_python_download.md)]
1718

1819
## Getting Started
1920

20-
* [Step 1: Configure development environment for pymssql Python development](../../../connect/python/pymssql/step-1-configure-development-environment-for-pymssql-python-development.md)
21-
* [Step 2: Create a SQL database for pymssql Python development](../../../connect/python/pymssql/step-2-create-a-sql-database-for-pymssql-python-development.md)
22-
* [Step 3: Proof of concept connecting to SQL using pymssql](../../../connect/python/pymssql/step-3-proof-of-concept-connecting-to-sql-using-pymssql.md)
21+
* [Step 1: Configure development environment for pymssql Python development](step-1-configure-development-environment-for-pymssql-python-development.md)
22+
* [Step 2: Create a SQL database for pymssql Python development](step-2-create-a-sql-database-for-pymssql-python-development.md)
23+
* [Step 3: Proof of concept connecting to SQL using pymssql](step-3-proof-of-concept-connecting-to-sql-using-pymssql.md)
2324

2425
## Documentation
26+
2527
* [pymssql documentation](https://pypi.org/project/pymssql/)
28+
29+
## Support
30+
31+
Pymssql is community supported software. This software does not come with Microsoft support.
32+
33+
To get help, file an [issue in the pymssql GitHub repository](https://github.com/pymssql/pymssql/issues) or visit other Python community resources:
34+
35+
* [Azure Python Developer Center](https://azure.microsoft.com/develop/python/)
36+
* [python.org Community](https://www.python.org/community/)

docs/connect/python/pyodbc/python-sql-driver-pyodbc.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: "Python SQL Driver - pyodbc"
3-
description: "This guide describes installing Python, the Microsoft ODBC Driver for SQL Server, and pymssql. Then using the sample code, connect to and interact with a SQL database."
3+
description: "This guide describes installing Python, the ODBC Driver for SQL Server, and pyodbc. Sample code shows how to connect to and interact with a SQL database."
44
ms.custom: ""
5-
ms.date: "08/09/2017"
5+
ms.date: "10/06/2020"
66
ms.prod: sql
77
ms.prod_service: connectivity
88
ms.reviewer: ""
@@ -25,3 +25,12 @@ ms.author: v-daenge
2525
## Documentation
2626

2727
* [pyodbc documentation](https://mkleehammer.github.io/pyodbc/)
28+
29+
## Support
30+
31+
PyODBC is community supported software. Microsoft contributes to the pyODBC open-source community and is an active participant in the repository at [https://github.com/mkleehammer/pyodbc/](https://github.com/mkleehammer/pyodbc/). However, this software does not come with Microsoft support.
32+
33+
To get help, file an [issue in the pyODBC GitHub repository](https://github.com/mkleehammer/pyodbc/issues) or visit other Python community resources:
34+
35+
* [Azure Python Developer Center](https://azure.microsoft.com/develop/python/)
36+
* [python.org Community](https://www.python.org/community/)

docs/connect/ruby/ruby-driver-for-sql-server.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: "Ruby Driver"
3-
description: "Learn how to connect to a SQL Database using Ruby on Windows, Linux, or macOS."
3+
description: "Learn how to connect to, select, and insert data in a SQL Database using Ruby on Windows, Linux, or macOS."
44
ms.custom: ""
5-
ms.date: "08/08/2017"
5+
ms.date: "10/06/2020"
66
ms.prod: sql
77
ms.prod_service: connectivity
88
ms.reviewer: ""
@@ -19,17 +19,25 @@ ms.author: v-daenge
1919
You can connect to a SQL Database using Ruby on Windows, Linux, or macOS.
2020

2121
## Getting Started
22+
2223
* [Step 1: Configure development environment for Ruby development](step-1-configure-development-environment-for-ruby-development.md)
2324
* [Step 2: Create a SQL database for Ruby development](step-2-create-a-sql-database-for-ruby-development.md)
2425
* [Step 3: Proof of concept connecting to SQL using Ruby](step-3-proof-of-concept-connecting-to-sql-using-ruby.md)
2526

2627
## Documentation
28+
2729
[Documentation at ruby-lang.org](https://www.ruby-lang.org/en/documentation/)
2830

31+
## Support
32+
33+
Ruby and tiny_tds are community supported software. This software does not come with Microsoft support. Use the community support options listed below.
34+
2935
## Community
36+
3037
[Azure Ruby Developer Center](https://azure.microsoft.com/develop/ruby/)
3138

3239
## Samples
40+
3341
* [Getting Started with Ruby on macOS](https://www.microsoft.com/sql-server/developer-get-started/ruby/mac/)
3442
* [Getting Started with Ruby on Ubuntu](https://www.microsoft.com/sql-server/developer-get-started/ruby/ubuntu/)
3543
* [Getting Started with Ruby on Red Hat Enterprise Linux (RHEL)](https://www.microsoft.com/sql-server/developer-get-started/ruby/rhel/)

0 commit comments

Comments
 (0)