-
Notifications
You must be signed in to change notification settings - Fork 107
Closed
Azure/azure-functions-python-library
#185Labels
Description
Support for azure sql in/out binding
I've already seen people raise similar issue before: #365
At this time, looks like the only db binding supported is cosmos, the doc is here
Considering
- programming model 1 already supported sql in/out biding, doc, can we expect same feature to exist for model 2
- RDBMS like azure sql has a huge user base, Having these bindings would really benefit the sql users
Sample v1 binding for sql
{
"name": "todoItems",
"type": "sql",
"direction": "out",
"commandText": "dbo.ToDo",
"connectionStringSetting": "SqlConnectionString"
}