You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-azure-mysql-input.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -494,6 +494,7 @@ CREATE TABLE Products (
494
494
The following example shows a MYSQL input binding that is [triggered by an HTTP](./functions-bindings-http-webhook-trigger.md) request and reads from a query and returns the results in the HTTP response.
495
495
496
496
::: zone-end
497
+
497
498
::: zone pivot="programming-language-typescript"
498
499
499
500
# [Model v4](#tab/nodejs-v4)
@@ -531,6 +532,7 @@ TypeScript samples aren't documented for model v3.
More samples for the Azure Database for MySQL input binding are available in the [GitHub repository](https://github.com/Azure/azure-functions-mysql-extension/tree/main/samples/samples-powershell).
@@ -1428,6 +1436,7 @@ In the [Java functions runtime library](/java/api/overview/azure/functions/runti
1428
1436
|**parameters**| Optional. Zero or more parameter values passed to the command during execution as a single string. Must follow the format `@param1=param1,@param2=param2`. Neither the parameter name nor the parameter value can contain a comma (`,`) or an equals sign (`=`). |
1429
1437
1430
1438
::: zone-end
1439
+
1431
1440
::: zone pivot="programming-language-javascript,programming-language-typescript"
1432
1441
1433
1442
## Configuration
@@ -1460,6 +1469,7 @@ The following table explains the binding configuration properties that you set i
1460
1469
---
1461
1470
1462
1471
::: zone-end
1472
+
1463
1473
::: zone pivot="programming-language-powershell,programming-language-python"
1464
1474
## Configuration
1465
1475
@@ -1474,6 +1484,7 @@ The following table explains the binding configuration properties that you set i
1474
1484
|**connectionStringSetting**| Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is being executed. This value isn't the actual connection string and must instead resolve to an environment variable name. Optional keywords in the connection string value are [available to refine MySQL bindings connectivity](./functions-bindings-azure-mysql.md#mysql-connection-string). |
1475
1485
|**commandType**| Required. A [CommandType](/dotnet/api/system.data.commandtype) value, which is [Text](/dotnet/api/system.data.commandtype#fields) for a query and [StoredProcedure](/dotnet/api/system.data.commandtype#fields) for a stored procedure. |
1476
1486
|**parameters**| Optional. Zero or more parameter values passed to the command during execution as a single string. Must follow the format `@param1=param1,@param2=param2`. Neither the parameter name nor the parameter value can contain a comma (`,`) or an equals sign (`=`). |
1487
+
1477
1488
::: zone-end
1478
1489
1479
1490
@@ -1490,4 +1501,5 @@ If an exception occurs when a MySQL input binding is executed then the function
1490
1501
1491
1502
-[Save data to a database (Output binding)](./functions-bindings-azure-mysql-output.md)
1492
1503
-[Run a function when data is changed in a MySQL table (Trigger)](./functions-bindings-azure-mysql-trigger.md)
1493
-
-[Run a function from a HTTP request (trigger)](./functions-bindings-http-webhook-trigger.md)
1504
+
-[Run a function from a HTTP request (trigger)](./functions-bindings-http-webhook-trigger.md)
0 commit comments