Skip to content

Commit a5fa0ce

Browse files
authored
Readme changes followup (#478)
* readme changes * Update README.md
1 parent 27cf57a commit a5fa0ce

File tree

1 file changed

+8
-18
lines changed

1 file changed

+8
-18
lines changed

README.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
[![Build Status](https://mssqltools.visualstudio.com/CrossPlatBuildScripts/_apis/build/status/SQL%20Bindings/SQL%20Bindings%20-%20Nightly?branchName=main)](https://mssqltools.visualstudio.com/CrossPlatBuildScripts/_build/latest?definitionId=481&branchName=main)
44

5+
## Table of Contents
6+
- [Introduction](#introduction)
7+
- [Known Issues](#known-issues)
8+
- [Telemetry](#telemetry)
9+
- [Trademarks](#trademarks)
10+
511
## Introduction
612

713
This repository contains the Azure SQL bindings for Azure Functions extension code as well as a quick start tutorial and samples illustrating how to use the binding in different ways. The types of bindings supported are:
@@ -10,32 +16,16 @@ This repository contains the Azure SQL bindings for Azure Functions extension co
1016
- **Output Binding**: takes a list of rows and upserts them into the user table (i.e. If a row doesn't already exist, it is added. If it does, it is updated).
1117
- **Trigger Binding**: monitors the user table for changes (i.e., row inserts, updates, and deletes) and invokes the function with updated rows.
1218

13-
See the language specific guides for further details on support and usage of these bindings in the supported languages.
19+
See the language-specific guides for further details on support and usage of the Azure SQL bindings for Azure Functions in the supported languages:
1420

15-
- [.NET](./docs/BindingsGuide_Dotnet.md)
21+
- [.NET (C# in-process)](./docs/BindingsGuide_Dotnet.md)
1622
- [Java](./docs/BindingsGuide_Java.md)
1723
- [Javascript](./docs/BindingsGuide_Javascript.md)
1824
- [Python](./docs/BindingsGuide_Python.md)
1925
- [PowerShell](./docs/BindingsGuide_PowerShell.md)
2026

2127
Further information on the Azure SQL binding for Azure Functions is also available in the [Azure Functions docs](https://docs.microsoft.com/azure/azure-functions/functions-bindings-azure-sql).
2228

23-
Azure SQL bindings for Azure Functions are supported for:
24-
- .NET functions (C# in-process)
25-
- NodeJS functions (JavaScript/TypeScript)
26-
- Python functions
27-
- Java functions
28-
- PowerShell functions
29-
30-
## Table of Contents
31-
32-
- [Azure SQL bindings for Azure Functions - Preview](#azure-sql-bindings-for-azure-functions---preview)
33-
- [Introduction](#introduction)
34-
- [Table of Contents](#table-of-contents)
35-
- [Known Issues](#known-issues)
36-
- [Telemetry](#telemetry)
37-
- [Trademarks](#trademarks)
38-
3929
## Known Issues
4030

4131
- Output bindings against tables with columns of data types `NTEXT`, `TEXT`, or `IMAGE` are not supported and data upserts will fail. These types [will be removed](https://docs.microsoft.com/sql/t-sql/data-types/ntext-text-and-image-transact-sql) in a future version of SQL Server and are not compatible with the `OPENJSON` function used by this Azure Functions binding.

0 commit comments

Comments
 (0)