We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b93ba commit 22c655fCopy full SHA for 22c655f
articles/azure-functions/functions-bindings-azure-sql-input.md
@@ -987,6 +987,7 @@ The stored procedure `dbo.DeleteToDo` must be created on the database. In this
987
# [v2](#tab/python-v2)
988
989
```python
990
+import json
991
import logging
992
import azure.functions as func
993
from azure.functions.decorators.core import DataType
@@ -995,7 +996,7 @@ app = func.FunctionApp()
995
996
997
@app.function_name(name="DeleteToDo")
998
@app.route(route="deletetodo/{id}")
-@app.sql_input(arg_name="products",
999
+@app.sql_input(arg_name="todo",
1000
command_text="DeleteToDo",
1001
command_type="StoredProcedure",
1002
parameters="@Id={id}",
0 commit comments