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
@@ -1490,7 +1490,7 @@ The following table explains the binding configuration properties that you set i
1490
1490
1491
1491
Theattribute's constructor takes the MySQL command text, the command type, parameters, and the name of the connection string setting. The command can be a MySQL query with the command type `System.Data.CommandType.Text` or a stored procedure name with the command type `System.Data.CommandType.StoredProcedure`. The name of the connection string setting corresponds to the application setting (in local.settings.json for local development) that contains the [connection string](https://dev.mysql.com/doc/connector-net/en/connector-net-connections-string.html) to Azure Database for MySQL.
The following example shows a MySQL output binding in a Java function that adds a recordto a table, by using data provided in an HTTP `POST` request as a JSON body. The function takes an additional dependency on the [com.google.code.gson](https://github.com/google/gson) library to parse the JSON body.
215
+
The following example shows an Azure Database for MySQL output binding in a Java function that adds a recordto a table, by using data provided in an HTTP `POST` request as a JSON body. The function takes an additional dependency on the [com.google.code.gson](https://github.com/google/gson) library to parse the JSON body.
The following example shows a MySQL output binding that adds records to a table, by using data provided in an HTTP `POST` request as a JSON body.
295
+
The following example shows an Azure Database for MySQL output binding that adds records to a table, by using data provided in an HTTP `POST` request as a JSON body.
296
296
297
297
::: zone-end
298
298
@@ -404,7 +404,7 @@ The following example is binding data in the function.json file:
404
404
}
405
405
```
406
406
407
-
The [configuration](#configuration) section explains these properties.
407
+
The [Configuration](#configuration) section explains these properties.
The following example shows a MySQL output binding in a function.json file and a PowerShell function that adds records to a table, by using data provided in an HTTP `POST` request as a JSON body.
450
+
The following example shows an Azure Database for MySQL output binding in a function.json file and a PowerShell function that adds records to a table, by using data provided in an HTTP `POST` request as a JSON body.
451
451
452
452
The following example is binding data in the function.json file:
453
453
@@ -481,14 +481,14 @@ The following example is binding data in the function.json file:
481
481
}
482
482
```
483
483
484
-
The [configuration](#configuration) section explains these properties.
484
+
The [Configuration](#configuration) section explains these properties.
485
485
486
486
The following example is sample PowerShell code for the function in the run.ps1 file:
487
487
488
488
```powershell
489
489
using namespace System.Net
490
490
491
-
# Trigger binding data passed in via parameter block
491
+
# Trigger binding data passed in via parameter block.
492
492
param($Request, $TriggerMetadata)
493
493
494
494
# Write to the Azure Functions log stream.
@@ -498,7 +498,7 @@ Write-Host "PowerShell function with MySql Output Binding processed a request."
498
498
# that have a property matching each of the columns in the table to upsert to.
499
499
$req_body = $Request.Body
500
500
501
-
# Assign the value that you want to pass to the MySql output binding.
501
+
# Assign the value that you want to pass to the MySQL output binding.
502
502
# The -Name value corresponds to the name property in the function.json file for the binding.
The following example shows a MySQL output binding in a function.json file and a Python function that adds records to a table, by using data provided in an HTTP `POST` request as a JSON body.
541
+
The following example shows an Azure Database for MySQL output binding in a function.json file and a Python function that adds records to a table, by using data provided in an HTTP `POST` request as a JSON body.
542
542
543
543
# [v2](#tab/python-v2)
544
544
@@ -603,7 +603,7 @@ The following example is binding data in the function.json file:
603
603
}
604
604
```
605
605
606
-
The [configuration](#configuration) section explains these properties.
606
+
The [Configuration](#configuration) section explains these properties.
607
607
608
608
The following example is sample Python code:
609
609
@@ -667,7 +667,7 @@ In the [Java functions runtime library](/java/api/overview/azure/functions/runti
667
667
668
668
# [Model v4](#tab/nodejs-v4)
669
669
670
-
The following table explains the properties that you can set on the `options` object passed to the `output.generic()` method.
670
+
The following table explains the properties that you can set on the `options` object passed to the `output.generic()` method:
671
671
672
672
| Property | Description |
673
673
|---------|----------------------|
@@ -676,7 +676,7 @@ The following table explains the properties that you can set on the `options` ob
676
676
677
677
# [Model v3](#tab/nodejs-v3)
678
678
679
-
The following table explains the binding configuration properties that you set in the function.json file.
679
+
The following table explains the binding configuration properties that you set in the function.json file:
680
680
681
681
| Property | Description |
682
682
|---------|----------------------|
@@ -694,7 +694,7 @@ The following table explains the binding configuration properties that you set i
694
694
695
695
## Configuration
696
696
697
-
The following table explains the binding configuration properties that you set in the function.json file.
697
+
The following table explains the binding configuration properties that you set in the function.json file:
0 commit comments