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
@@ -143,7 +140,6 @@ The following example shows a [C# function](functions-dotnet-class-library.md) t
143
140
144
141
The stored procedure `DeleteProductsCost` must be created on the MySQL database. In this example, the stored procedure deletes a single record or all records depending on the value of the parameter.
@@ -287,7 +281,6 @@ The following example shows a [C# function](functions-dotnet-class-library.md) t
287
281
288
282
The stored procedure `DeleteProductsCost` must be created on the MySQL database. In this example, the stored procedure deletes a single record or all records depending on the value of the parameter.
@@ -441,7 +432,6 @@ The following example shows a MySQL input binding in a Java function that is [tr
441
432
442
433
The stored procedure `DeleteProductsCost` must be created on the database. In this example, the stored procedure deletes a single record or all records depending on the value of the parameter.
@@ -770,7 +755,6 @@ The following example shows a MySQL input binding that is [triggered by an HTTP]
770
755
771
756
The stored procedure `DeleteProductsCost` must be created on the database. In this example, the stored procedure deletes a single record or all records depending on the value of the parameter.
@@ -1046,7 +1027,6 @@ The following example shows a MySQL input binding in a function.json file and a
1046
1027
1047
1028
The stored procedure `DeleteProductsCost` must be created on the database. In this example, the stored procedure deletes a single record or all records depending on the value of the parameter.
@@ -1320,7 +1299,6 @@ The following example shows a MySQL input binding in a function.json file and a
1320
1299
1321
1300
The stored procedure `DeleteProductsCost` must be created on the database. In this example, the stored procedure deletes a single record or all records depending on the value of the parameter.
@@ -1505,12 +1483,11 @@ The following table explains the binding configuration properties that you set i
1505
1483
1506
1484
The attribute's constructor takes the MySQL command text, the command type, parameters, and the connection string setting name. The command can be a MYSQL query with the command type `System.Data.CommandType.Text` or stored procedure name with the command type `System.Data.CommandType.StoredProcedure`. The connection string setting name corresponds to the application setting (in `local.settings.json` for local development) that contains the [connection string](https://dev.mysql.com/doc/refman/8.4/en/connecting-using-uri-or-key-value-pairs.html#connecting-using-uri) to the Azure Database for MySQL.
1507
1485
1508
-
<!-- >Queries executed by the input binding are [parameterized](/dotnet/api/microsoft.data.sqlclient.sqlparameter) in Microsoft.Data.SqlClient to reduce the risk of [SQL injection](/sql/relational-databases/security/sql-injection) from the parameter values passed into the binding. -->
1509
1486
1510
1487
If an exception occurs when a MySQL input binding is executed then the function code won't execute. This may result in an error code being returned, such as an HTTP trigger returning a 500 error code.
1511
1488
1512
1489
## Next steps
1513
1490
1514
-
-[Save data to a database (Output binding)](./functions-bindings-azure-sql-output.md)
1515
-
-[Run a function when data is changed in a SQL table (Trigger)](./functions-bindings-azure-sql-trigger.md)
1491
+
-[Save data to a database (Output binding)](./functions-bindings-azure-mysql-output.md)
1492
+
-[Run a function when data is changed in a MySQL table (Trigger)](./functions-bindings-azure-mysql-trigger.md)
1516
1493
-[Run a function from a HTTP request (trigger)](./functions-bindings-http-webhook-trigger.md)
0 commit comments