You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
10
16
-**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).
11
17
-**Trigger Binding**: monitors the user table for changes (i.e., row inserts, updates, and deletes) and invokes the function with updated rows.
12
18
13
-
See the languagespecific 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:
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).
22
28
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
-
39
29
## Known Issues
40
30
41
31
- 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