Skip to content

Commit df0444a

Browse files
Merge pull request #234577 from dzsquared/sqlbindings-april2023
additional SQL bindings content
2 parents a1938cd + bea811d commit df0444a

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

articles/azure-functions/functions-bindings-azure-sql-trigger.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ For more information on change tracking and how it's used by applications such a
4242
::: zone pivot="programming-language-csharp"
4343

4444
## Example usage
45+
<a id="example"></a>
4546

4647

4748
# [In-process](#tab/in-process)
@@ -228,6 +229,7 @@ public static void Run(IReadOnlyList<SqlChange<ToDoItem>> todoChanges, ILogger l
228229

229230
::: zone pivot="programming-language-java"
230231
## Example usage
232+
<a id="example"></a>
231233

232234
More samples for the Azure SQL trigger are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/release/trigger/samples/samples-java).
233235

@@ -346,6 +348,7 @@ public class ProductsTrigger {
346348

347349
::: zone pivot="programming-language-powershell"
348350
## Example usage
351+
<a id="example"></a>
349352

350353
More samples for the Azure SQL trigger are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/release/trigger/samples/samples-powershell).
351354

@@ -407,6 +410,7 @@ Write-Host "SQL Changes: $changesJson"
407410

408411
::: zone pivot="programming-language-javascript"
409412
## Example usage
413+
<a id="example"></a>
410414

411415
More samples for the Azure SQL trigger are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/release/trigger/samples/samples-js).
412416

@@ -463,6 +467,7 @@ module.exports = async function (context, todoChanges) {
463467

464468
::: zone pivot="programming-language-python"
465469
## Example usage
470+
<a id="example"></a>
466471

467472
More samples for the Azure SQL trigger are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/release/trigger/samples/samples-python).
468473

articles/azure-functions/functions-overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ The following are a common, _but by no means exhaustive_, set of scenarios for A
4343
| **Create reliable message queue systems** | Process message queues using [Queue Storage](./functions-bindings-storage-queue.md), [Service Bus](./functions-bindings-service-bus.md), or [Event Hubs](./functions-bindings-event-hubs.md) |
4444
| **Analyze IoT data streams** | Collect and process [data from IoT devices](./functions-bindings-event-iot.md) |
4545
| **Process data in real time** | Use [Functions and SignalR](./functions-bindings-signalr-service.md) to respond to data in the moment |
46+
| **Connect to a SQL database** | Use [SQL bindings](./functions-bindings-azure-sql.md) to read or write data from Azure SQL |
4647

4748
These scenarios allow you to build event-driven systems using modern architectural patterns.
4849

articles/azure-functions/functions-reference.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ The following components support identity-based connections:
119119
| Azure Blobs triggers and bindings | All | [Azure Blobs extension version 5.0.0 or later][blobv5],<br/>[Extension bundle 3.3.0 or later][blobv5] |
120120
| Azure Queues triggers and bindings | All | [Azure Queues extension version 5.0.0 or later][queuev5],<br/>[Extension bundle 3.3.0 or later][queuev5] |
121121
| Azure Tables (when using Azure Storage) | All | [Azure Tables extension version 1.0.0 or later](./functions-bindings-storage-table.md#table-api-extension),<br/>[Extension bundle 3.3.0 or later][tablesv1] |
122+
| Azure SQL Database | All | [Connect a function app to Azure SQL with managed identity and SQL bindings][azuresql-identity]
122123
| Azure Event Hubs triggers and bindings | All | [Azure Event Hubs extension version 5.0.0 or later][eventhubv5],<br/>[Extension bundle 3.3.0 or later][eventhubv5] |
123124
| Azure Service Bus triggers and bindings | All | [Azure Service Bus extension version 5.0.0 or later][servicebusv5],<br/>[Extension bundle 3.3.0 or later][servicebusv5] |
124125
| Azure Cosmos DB triggers and bindings | All | [Azure Cosmos DB extension version 4.0.0 or later][cosmosv4],<br/> [Extension bundle 4.0.2 or later][cosmosv4]|
@@ -134,6 +135,7 @@ The following components support identity-based connections:
134135
[tablesv1]: ./functions-bindings-storage-table.md#table-api-extension
135136
[signalr]: ./functions-bindings-signalr-service.md#install-extension
136137
[durable-identity]: ./durable/durable-functions-configure-durable-functions-with-credentials.md
138+
[azuresql-identity]: ./functions-identity-access-azure-sql-with-managed-identity.md
137139

138140
[!INCLUDE [functions-identity-based-connections-configuration](../../includes/functions-identity-based-connections-configuration.md)]
139141

includes/functions-bindings-code-example-chooser.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: fasttrack-edit
1313
| ---- | ----- | ------ |
1414
| Blob storage | [Trigger](../articles/azure-functions/functions-bindings-storage-blob-trigger.md?tabs=csharp#example)<br/>[Input](../articles/azure-functions/functions-bindings-storage-blob-input.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-storage-blob-output.md?tabs=csharp#example) | [Link](https://www.serverlesslibrary.net/?technology=Blob%20Storage&language=C%23) |
1515
| Azure Cosmos DB |[Trigger](../articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md?tabs=csharp#example)<br/>[Input](../articles/azure-functions/functions-bindings-cosmosdb-v2-input.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-cosmosdb-v2-output.md?tabs=csharp#example) | [Link](https://www.serverlesslibrary.net/?technology=Cosmos%2CCosmos%20DB&language=C%23) |
16-
| Azure SQL (preview) |[Input](../articles/azure-functions/functions-bindings-azure-sql-input.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-azure-sql-output.md?tabs=csharp#example) | [Link](/samples/azure-samples/azure-sql-binding-func-dotnet-todo/todo-backend-dotnet-azure-sql-bindings-azure-functions/) |
16+
| Azure SQL (preview) |[Trigger](../articles/azure-functions/functions-bindings-azure-sql-trigger.md?tabs=csharp#example)<br/>[Input](../articles/azure-functions/functions-bindings-azure-sql-input.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-azure-sql-output.md?tabs=csharp#example) | [Link](/samples/azure-samples/azure-sql-binding-func-dotnet-todo/todo-backend-dotnet-azure-sql-bindings-azure-functions/) |
1717
| Event Grid |[Trigger](../articles/azure-functions/functions-bindings-event-grid-trigger.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-grid-output.md?tabs=csharp#example) | [Link](https://www.serverlesslibrary.net/?technology=Event%20Grid&language=C%23) |
1818
| Event Hubs |[Trigger](../articles/azure-functions/functions-bindings-event-hubs-trigger.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-hubs-output.md?tabs=csharp#example) | |
1919
| IoT Hub |[Trigger](../articles/azure-functions/functions-bindings-event-iot-trigger.md?tabs=csharp#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-iot-output.md?tabs=csharp#example) | |
@@ -33,6 +33,7 @@ ms.custom: fasttrack-edit
3333
| ---- | ----- | ------ |
3434
| Blob storage | [Trigger](../articles/azure-functions/functions-bindings-storage-blob-trigger.md?tabs=java#example)<br/>[Input](../articles/azure-functions/functions-bindings-storage-blob-input.md?tabs=java#example)<br/>[Output](../articles/azure-functions/functions-bindings-storage-blob-output.md?tabs=java#example) | [Link](https://www.serverlesslibrary.net/?technology=Blob%20Storage&language=Java) |
3535
| Azure Cosmos DB |[Trigger](../articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md?tabs=java#example)<br/>[Input](../articles/azure-functions/functions-bindings-cosmosdb-v2-input.md?tabs=java#example)<br/>[Output](../articles/azure-functions/functions-bindings-cosmosdb-v2-output.md?tabs=java#example) | [Link](https://www.serverlesslibrary.net/?technology=Cosmos%2CCosmos%20DB&language=Java) |
36+
| Azure SQL (preview) |[Trigger](../articles/azure-functions/functions-bindings-azure-sql-trigger.md?tabs=java#example)<br/>[Input](../articles/azure-functions/functions-bindings-azure-sql-input.md?tabs=java#example)<br/>[Output](../articles/azure-functions/functions-bindings-azure-sql-output.md?tabs=java#example) | |
3637
| Event Grid |[Trigger](../articles/azure-functions/functions-bindings-event-grid-trigger.md?tabs=java#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-grid-output.md?tabs=java#example) | [Link](https://www.serverlesslibrary.net/?technology=Event%20Grid&language=Java) |
3738
| Event Hubs |[Trigger](../articles/azure-functions/functions-bindings-event-hubs-trigger.md?tabs=java#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-hubs-output.md?tabs=java#example) | |
3839
| IoT Hub |[Trigger](../articles/azure-functions/functions-bindings-event-iot-trigger.md?tabs=java#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-iot-output.md?tabs=java#example) | |
@@ -52,6 +53,7 @@ ms.custom: fasttrack-edit
5253
| ---- | ----- | ------ |
5354
| Blob storage | [Trigger](../articles/azure-functions/functions-bindings-storage-blob-trigger.md?tabs=javascript#example)<br/>[Input](../articles/azure-functions/functions-bindings-storage-blob-input.md?tabs=javascript#example)<br/>[Output](../articles/azure-functions/functions-bindings-storage-blob-output.md?tabs=javascript#example) | [Link](https://www.serverlesslibrary.net/?technology=Blob%20Storage&language=JavaScript) |
5455
| Azure Cosmos DB |[Trigger](../articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md?tabs=javascript#example)<br/>[Input](../articles/azure-functions/functions-bindings-cosmosdb-v2-input.md?tabs=javascript#example)<br/>[Output](../articles/azure-functions/functions-bindings-cosmosdb-v2-output.md?tabs=javascript#example) | [Link](https://www.serverlesslibrary.net/?technology=Cosmos%2CCosmos%20DB&language=JavaScript) |
56+
| Azure SQL (preview) |[Trigger](../articles/azure-functions/functions-bindings-azure-sql-trigger.md?tabs=javascript#example)<br/>[Input](../articles/azure-functions/functions-bindings-azure-sql-input.md?tabs=javascript#example)<br/>[Output](../articles/azure-functions/functions-bindings-azure-sql-output.md?tabs=javascript#example) | |
5557
| Event Grid |[Trigger](../articles/azure-functions/functions-bindings-event-grid-trigger.md?tabs=javascript#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-grid-output.md?tabs=javascript#example) | [Link](https://www.serverlesslibrary.net/?technology=Event%20Grid&language=JavaScript) |
5658
| Event Hubs |[Trigger](../articles/azure-functions/functions-bindings-event-hubs-trigger.md?tabs=javascript#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-hubs-output.md?tabs=javascript#example) | |
5759
| IoT Hub |[Trigger](../articles/azure-functions/functions-bindings-event-iot-trigger.md?tabs=javascript#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-iot-output.md?tabs=javascript#example) | |
@@ -71,6 +73,7 @@ ms.custom: fasttrack-edit
7173
| ---- | ----- | ------ |
7274
| Blob storage | [Trigger](../articles/azure-functions/functions-bindings-storage-blob-trigger.md?tabs=powershell#example)<br/>[Input](../articles/azure-functions/functions-bindings-storage-blob-input.md?tabs=powershell#example)<br/>[Output](../articles/azure-functions/functions-bindings-storage-blob-output.md?tabs=powershell#example) | [Link](https://www.serverlesslibrary.net/?technology=Blob%20Storage&language=PowerShell) |
7375
| Azure Cosmos DB |[Trigger](../articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md?tabs=powershell#example)<br/>[Input](../articles/azure-functions/functions-bindings-cosmosdb-v2-input.md?tabs=powershell#example)<br/>[Output](../articles/azure-functions/functions-bindings-cosmosdb-v2-output.md?tabs=powershell#example) | [Link](https://www.serverlesslibrary.net/?technology=Cosmos%2CCosmos%20DB&language=PowerShell) |
76+
| Azure SQL (preview) |[Trigger](../articles/azure-functions/functions-bindings-azure-sql-trigger.md?tabs=powershell#example)<br/>[Input](../articles/azure-functions/functions-bindings-azure-sql-input.md?tabs=powershell#example)<br/>[Output](../articles/azure-functions/functions-bindings-azure-sql-output.md?tabs=powershell#example) | |
7477
| Event Grid |[Trigger](../articles/azure-functions/functions-bindings-event-grid-trigger.md?tabs=powershell#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-grid-output.md?tabs=powershell#example) | [Link](https://www.serverlesslibrary.net/?technology=Event%20Grid&language=PowerShell) |
7578
| Event Hubs |[Trigger](../articles/azure-functions/functions-bindings-event-hubs-trigger.md?tabs=powershell#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-hubs-output.md?tabs=powershell#example) | |
7679
| IoT Hub |[Trigger](../articles/azure-functions/functions-bindings-event-iot-trigger.md?tabs=powershell#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-iot-output.md?tabs=powershell#example) | |
@@ -90,6 +93,7 @@ ms.custom: fasttrack-edit
9093
| ---- | ----- | ------ |
9194
| Blob storage | [Trigger](../articles/azure-functions/functions-bindings-storage-blob-trigger.md?tabs=python#example)<br/>[Input](../articles/azure-functions/functions-bindings-storage-blob-input.md?tabs=python#example)<br/>[Output](../articles/azure-functions/functions-bindings-storage-blob-output.md?tabs=python#example) | [Link](https://www.serverlesslibrary.net/?technology=Blob%20Storage&language=Python) |
9295
| Azure Cosmos DB |[Trigger](../articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md?tabs=python#example)<br/>[Input](../articles/azure-functions/functions-bindings-cosmosdb-v2-input.md?tabs=python#example)<br/>[Output](../articles/azure-functions/functions-bindings-cosmosdb-v2-output.md?tabs=python#example) | [Link](https://www.serverlesslibrary.net/?technology=Cosmos%2CCosmos%20DB&language=Python) |
96+
| Azure SQL (preview) |[Trigger](../articles/azure-functions/functions-bindings-azure-sql-trigger.md?tabs=python#example)<br/>[Input](../articles/azure-functions/functions-bindings-azure-sql-input.md?tabs=python#example)<br/>[Output](../articles/azure-functions/functions-bindings-azure-sql-output.md?tabs=python#example) | |
9397
| Event Grid |[Trigger](../articles/azure-functions/functions-bindings-event-grid-trigger.md?tabs=python#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-grid-output.md?tabs=python#example) | [Link](https://www.serverlesslibrary.net/?technology=Event%20Grid&language=Python) |
9498
| Event Hubs |[Trigger](../articles/azure-functions/functions-bindings-event-hubs-trigger.md?tabs=python#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-hubs-output.md?tabs=python#example) | |
9599
| IoT Hub |[Trigger](../articles/azure-functions/functions-bindings-event-iot-trigger.md?tabs=python#example)<br/>[Output](../articles/azure-functions/functions-bindings-event-iot-output.md?tabs=python#example) | |

0 commit comments

Comments
 (0)