Skip to content

Commit c3d01bd

Browse files
authored
Merge pull request #279333 from JetterMcTedder/patch-3
[SCOPED] Updated SQL Bindings pages for what file to use
2 parents ffe8af4 + def0c1a commit c3d01bd

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn to use the Azure SQL input binding in Azure Functions.
44
author: JetterMcTedder
55
ms.topic: reference
66
ms.custom: build-2023, devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
7-
ms.date: 6/20/2024
7+
ms.date: 6/26/2024
88
ms.author: bspendolini
99
ms.reviewer: glenga
1010
zone_pivot_groups: programming-languages-set-functions
@@ -818,6 +818,8 @@ The following example shows a SQL input binding in a function.json file and a Py
818818

819819
# [v2](#tab/python-v2)
820820

821+
The following is sample python code for the function_app.py file:
822+
821823
```python
822824
import json
823825
import logging
@@ -899,6 +901,8 @@ The following example shows a SQL input binding in a Python function that is [tr
899901

900902
# [v2](#tab/python-v2)
901903

904+
The following is sample python code for the function_app.py file:
905+
902906
```python
903907
import json
904908
import logging
@@ -986,6 +990,8 @@ The stored procedure `dbo.DeleteToDo` must be created on the database. In this
986990

987991
# [v2](#tab/python-v2)
988992

993+
The following is sample python code for the function_app.py file:
994+
989995
```python
990996
import json
991997
import logging

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn to use the Azure SQL output binding in Azure Functions.
44
author: JetterMcTedder
55
ms.topic: reference
66
ms.custom: build-2023, devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
7-
ms.date: 6/20/2024
7+
ms.date: 6/26/2024
88
ms.author: bspendolini
99
ms.reviewer: glenga
1010
zone_pivot_groups: programming-languages-set-functions
@@ -862,6 +862,8 @@ The following example shows a SQL output binding in a function.json file and a P
862862

863863
# [v2](#tab/python-v2)
864864

865+
The following is sample python code for the function_app.py file:
866+
865867
```python
866868
import json
867869
import logging
@@ -966,6 +968,8 @@ CREATE TABLE dbo.RequestLog (
966968

967969
# [v2](#tab/python-v2)
968970

971+
The following is sample python code for the function_app.py file:
972+
969973
```python
970974
from datetime import datetime
971975
import json

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- devx-track-js
1010
- devx-track-python
1111
- ignite-2023
12-
ms.date: 6/24/2024
12+
ms.date: 6/26/2024
1313
ms.author: bspendolini
1414
ms.reviewer: glenga
1515
zone_pivot_groups: programming-languages-set-functions-lang-workers
@@ -439,6 +439,8 @@ The following example shows a Python function that is invoked when there are cha
439439

440440
# [v2](#tab/python-v2)
441441

442+
The following is sample python code for the function_app.py file:
443+
442444
```python
443445
import json
444446
import logging

0 commit comments

Comments
 (0)