Skip to content

Commit 22c655f

Browse files
Update functions-bindings-azure-sql-input.md
1 parent 55b93ba commit 22c655f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,6 +987,7 @@ The stored procedure `dbo.DeleteToDo` must be created on the database. In this
987987
# [v2](#tab/python-v2)
988988

989989
```python
990+
import json
990991
import logging
991992
import azure.functions as func
992993
from azure.functions.decorators.core import DataType
@@ -995,7 +996,7 @@ app = func.FunctionApp()
995996

996997
@app.function_name(name="DeleteToDo")
997998
@app.route(route="deletetodo/{id}")
998-
@app.sql_input(arg_name="products",
999+
@app.sql_input(arg_name="todo",
9991000
command_text="DeleteToDo",
10001001
command_type="StoredProcedure",
10011002
parameters="@Id={id}",

0 commit comments

Comments
 (0)