Skip to content

Commit dbf00d0

Browse files
committed
edit pass: azure-database-for-mysql-bindings
1 parent 2667f12 commit dbf00d0

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ The following example is binding data in the function.json file:
10091009

10101010
The [configuration](#configuration) section explains these properties.
10111011

1012-
The following is sample PowerShell code for the function in the run.ps1 file:
1012+
The following example is sample PowerShell code for the function in the run.ps1 file:
10131013

10141014
```powershell
10151015
using namespace System.Net
@@ -1413,7 +1413,7 @@ The [C# library](functions-dotnet-class-library.md) uses the `MySqlAttribute` at
14131413
| `CommandText` | Required. The MySQL query command or name of the stored procedure that the binding executes. |
14141414
| `ConnectionStringSetting` | Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is executed. This value isn't the actual connection string and must instead resolve to an environment variable name. |
14151415
| `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. |
1416-
| `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 equal sign (`=`). |
1416+
| `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`. The parameter name and parameter value can't contain a comma (`,`) or an equal sign (`=`). |
14171417

14181418
::: zone-end
14191419

@@ -1429,7 +1429,7 @@ In the [Java functions runtime library](/java/api/overview/azure/functions/runti
14291429
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is executed. This value isn't the actual connection string and must instead resolve to an environment variable name. |
14301430
| `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. |
14311431
| `name` | Required. The unique name of the function binding. |
1432-
| `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 equal sign (`=`). |
1432+
| `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`. The parameter name and parameter value can't contain a comma (`,`) or an equal sign (`=`). |
14331433

14341434
::: zone-end
14351435

@@ -1444,9 +1444,9 @@ The following table explains the properties that you can set on the `options` ob
14441444
| Property | Description |
14451445
|---------|----------------------|
14461446
| `commandText` | Required. The MySQL query command or name of the stored procedure that the binding executes. |
1447-
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is 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). |
1447+
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is 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). |
14481448
| `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. |
1449-
| `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 equal sign (`=`). |
1449+
| `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`. The parameter name and parameter value can't contain a comma (`,`) or an equal sign (`=`). |
14501450

14511451
# [Model v3](#tab/nodejs-v3)
14521452

@@ -1460,7 +1460,7 @@ The following table explains the binding configuration properties that you set i
14601460
| `commandText` | Required. The MySQL query command or name of the stored procedure that the binding executes. |
14611461
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is 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). |
14621462
| `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. |
1463-
| `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 equal sign (`=`). |
1463+
| `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`. The parameter name and parameter value can't contain a comma (`,`) or an equal sign (`=`). |
14641464

14651465
---
14661466

@@ -1480,7 +1480,7 @@ The following table explains the binding configuration properties that you set i
14801480
| `commandText` | Required. The MySQL query command or name of the stored procedure that the binding executes. |
14811481
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database against which the query or stored procedure is 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). |
14821482
| `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. |
1483-
| `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 equal sign (`=`). |
1483+
| `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`. The parameter name and parameter value can't contain a comma (`,`) or an equal sign (`=`). |
14841484

14851485
::: zone-end
14861486

@@ -1495,4 +1495,4 @@ If an exception occurs when a MySQL input binding is executed, the function code
14951495
## Related content
14961496

14971497
* [Save data to a database (output binding)](./functions-bindings-azure-mysql-output.md)
1498-
* [Run a function from a HTTP request (trigger)](./functions-bindings-http-webhook-trigger.md)
1498+
* [Run a function from an HTTP request (trigger)](./functions-bindings-http-webhook-trigger.md)

articles/azure-functions/functions-bindings-azure-mysql-output.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ In the [Java functions runtime library](/java/api/overview/azure/functions/runti
656656
| Element |Description|
657657
|---------|---------|
658658
| `commandText` | Required. The name of the table that the binding writes to. |
659-
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable.|
659+
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable.|
660660
| `name` | Required. The unique name of the function binding. |
661661

662662
::: zone-end
@@ -672,7 +672,7 @@ The following table explains the properties that you can set on the `options` ob
672672
| Property | Description |
673673
|---------|----------------------|
674674
| `commandText` | Required. The name of the table that the binding writes to. |
675-
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable. |
675+
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable. |
676676

677677
# [Model v3](#tab/nodejs-v3)
678678

@@ -684,7 +684,7 @@ The following table explains the binding configuration properties that you set i
684684
|`direction` | Required. Must be set to `out`. |
685685
|`name` | Required. The name of the variable that represents the entity in function code. |
686686
| `commandText` | Required. The name of the table that the binding writes to. |
687-
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable. |
687+
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable. |
688688

689689
---
690690

@@ -702,7 +702,7 @@ The following table explains the binding configuration properties that you set i
702702
|`direction` | Required. Must be set to `out`. |
703703
|`name` | Required. The name of the variable that represents the entity in function code. |
704704
| `commandText` | Required. The name of the table that the binding writes to. |
705-
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable. |
705+
| `connectionStringSetting` | Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable. |
706706

707707
::: zone-end
708708

articles/azure-functions/functions-bindings-azure-mysql-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ If an exception occurs during startup, the host runtime automatically attempts t
731731

732732
If an exception occurs in the user function during change processing, the batch of rows currently being processed is retried again in 60 seconds. Other changes are processed as normal during this time, but the rows in the batch that caused the exception are ignored until the time-out period elapses.
733733

734-
If the function execution fails five consecutive times for a particular row, that row is completely ignored for all future changes. Because the rows in a batch aren't deterministic, rows in a failed batch might end up in different batches in subsequent invocations. This behavior means that not all rows in the failed batch are necessarily ignored. If other rows in the batch caused the exception, the "good" rows might end up in a different batch that doesn't fail in future invocations.
734+
If the function execution fails five consecutive times for a particular row, that row is ignored for all future changes. Because the rows in a batch aren't deterministic, rows in a failed batch might end up in different batches in subsequent invocations. This behavior means that not all rows in the failed batch are necessarily ignored. If other rows in the batch caused the exception, the "good" rows might end up in a different batch that doesn't fail in future invocations.
735735

736736
## Related content
737737

includes/functions-bindings-csharp-intro-with-csx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 11/16/2021
66
ms.author: glenga
77
---
88

9-
You an create a C# function by using one of the following C# modes:
9+
You can create a C# function by using one of the following C# modes:
1010

1111
* [Isolated worker model](../articles/azure-functions/dotnet-isolated-process-guide.md): Compiled C# function that runs in a worker process that's isolated from the runtime. An isolated worker process is required to support C# functions running on long-term support (LTS) and non-LTS versions for .NET and the .NET Framework.
1212
* [In-process model](../articles/azure-functions/functions-dotnet-class-library.md): Compiled C# function that runs in the same process as the Azure Functions runtime.

0 commit comments

Comments
 (0)