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/connectors/connectors-create-api-sqlazure.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,7 +229,7 @@ In this example, the logic app workflow starts with the [Recurrence trigger](../
229
229
230
230
1. Under the **Choose an operation** search box, select either of the following options:
231
231
232
-
***Built-in** when you want to use SQL Server [built-in actions](#built-in-connector-operations) such as **Execute Query**
232
+
***Built-in** when you want to use SQL Server [built-in actions](#built-in-connector-operations) such as **Execute query**
233
233
234
234

235
235
@@ -243,9 +243,9 @@ In this example, the logic app workflow starts with the [Recurrence trigger](../
This example selects the built-in action named **Execute Query**.
246
+
This example selects the built-in action named **Execute query**.
247
247
248
-

248
+

249
249
250
250
*[Managed actions](/connectors/sql/#actions)
251
251
@@ -458,7 +458,7 @@ The SQL Server built-in connector is available only for Standard logic app workf
458
458
| Action | Description |
459
459
|--------|-------------|
460
460
|[**Delete rows**](#delete-rows)| Deletes and returns the table rows that match the specified **Where condition** value. |
461
-
|[**Execute Query**](#execute-query)| Runs a query on an SQL database. |
461
+
|[**Execute query**](#execute-query)| Runs a query on an SQL database. |
462
462
|[**Execute stored procedure**](#execute-stored-procedure)| Runs a stored procedure on an SQL database. |
463
463
|[**Get rows**](#get-rows)| Gets the table rows that match the specified **Where condition** value. |
464
464
|[**Get tables**](#get-tables)| Gets all the tables from the database. |
@@ -512,7 +512,7 @@ The following example shows sample parameter values for the **Delete rows** acti
512
512
513
513
<aname="execute-query"></a>
514
514
515
-
### Execute Query
515
+
### Execute query
516
516
517
517
Operation ID: `executeQuery`
518
518
@@ -523,14 +523,14 @@ Runs a query on an SQL database.
523
523
| Name | Key | Required | Type | Description |
524
524
|------|-----|----------|------|-------------|
525
525
|**Query**|`query`| True | Dynamic | The body for your query |
526
-
|**Query Parameters**|`queryParameters`| False | Objects | The parameters for your query. <br><br>**Note**: If the query requires input parameters, you must provide these parameters. |
526
+
|**Query parameters**|`queryParameters`| False | Objects | The parameters for your query. <br><br>**Note**: If the query requires input parameters, you must provide these parameters. |
527
527
528
528
#### Returns
529
529
530
530
| Name | Type |
531
531
|------|------|
532
532
|**Result**| An array object that returns all the query results. Each row contains the column name and the corresponding value. |
533
-
|**Result Item**| An array object that returns one query result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. Each row contains the column name and the corresponding value. |
533
+
|**Result item**| An array object that returns one query result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. Each row contains the column name and the corresponding value. |
534
534
535
535
<aname="execute-stored-procedure"></a>
536
536
@@ -552,9 +552,9 @@ Runs a stored procedure on an SQL database.
552
552
| Name | Type |
553
553
|------|------|
554
554
|**Result**| An array object that returns all the query results |
555
-
|**Result Result sets**| An array object that returns one query result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. |
556
-
|**Result Stored procedure parameters**| The final values of the stored procedure's output and input-output parameters |
557
-
|**Result Return code**| The return code from the stored procedure |
555
+
|**Result result sets**| An array object that returns one query result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. |
556
+
|**Result stored procedure parameters**| The final values of the stored procedure's output and input-output parameters |
557
+
|**Result return code**| The return code from the stored procedure |
558
558
|**Status code**| The status code from the **Execute stored procedure** operation |
559
559
560
560
<aname="get-rows"></a>
@@ -577,7 +577,7 @@ Gets the table rows that match the specified **Where condition** value.
577
577
| Name | Type |
578
578
|------|------|
579
579
|**Result**| An array object that returns all the row results. |
580
-
|**Result Item**| An array object that returns one row result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. |
580
+
|**Result item**| An array object that returns one row result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. |
581
581
582
582
*Example*
583
583
@@ -619,8 +619,8 @@ None.
619
619
| Name | Type |
620
620
|------|------|
621
621
|**Result**| An array object that contains the full names and display names for all tables in the database. |
622
-
|**Result Display Name**| An array object that contains the display name for each table in the database. A **For each** loop is automatically added to your workflow to iterate through the array. |
623
-
|**Result Full Name**| An array object that contains the full name for each table in the database. A **For each** loop is automatically added to your workflow to iterate through the array. |
622
+
|**Result display Name**| An array object that contains the display name for each table in the database. A **For each** loop is automatically added to your workflow to iterate through the array. |
623
+
|**Result full name**| An array object that contains the full name for each table in the database. A **For each** loop is automatically added to your workflow to iterate through the array. |
624
624
|**Result Item**| An array object that returns the full name and display name one at time for each table. A **For each** loop is automatically added to your workflow to iterate through the array. |
0 commit comments