Skip to content

Commit 56984e5

Browse files
committed
Updates per feedback
1 parent d40e337 commit 56984e5

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/connectors/connectors-create-api-sqlazure.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ In this example, the logic app workflow starts with the [Recurrence trigger](../
229229

230230
1. Under the **Choose an operation** search box, select either of the following options:
231231

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**
233233

234234
![Screenshot showing the Azure portal, workflow designer for Standard logic app, and designer search box with "Built-in" selected underneath.](./media/connectors-create-api-sqlazure/select-built-in-category-standard.png)
235235

@@ -243,9 +243,9 @@ In this example, the logic app workflow starts with the [Recurrence trigger](../
243243

244244
* [Built-in actions](#built-in-connector-operations)
245245

246-
This example selects the built-in action named **Execute Query**.
246+
This example selects the built-in action named **Execute query**.
247247

248-
![Screenshot showing the designer search box with "sql server" and "Built-in" selected underneath with the "Execute Query" action selected in the "Actions" list.](./media/connectors-create-api-sqlazure/select-sql-execute-query-action-standard.png)
248+
![Screenshot showing the designer search box with "sql server" and "Built-in" selected underneath with the "Execute query" action selected in the "Actions" list.](./media/connectors-create-api-sqlazure/select-sql-execute-query-action-standard.png)
249249

250250
* [Managed actions](/connectors/sql/#actions)
251251

@@ -458,7 +458,7 @@ The SQL Server built-in connector is available only for Standard logic app workf
458458
| Action | Description |
459459
|--------|-------------|
460460
| [**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. |
462462
| [**Execute stored procedure**](#execute-stored-procedure) | Runs a stored procedure on an SQL database. |
463463
| [**Get rows**](#get-rows) | Gets the table rows that match the specified **Where condition** value. |
464464
| [**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
512512

513513
<a name="execute-query"></a>
514514

515-
### Execute Query
515+
### Execute query
516516

517517
Operation ID: `executeQuery`
518518

@@ -523,14 +523,14 @@ Runs a query on an SQL database.
523523
| Name | Key | Required | Type | Description |
524524
|------|-----|----------|------|-------------|
525525
| **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. |
527527

528528
#### Returns
529529

530530
| Name | Type |
531531
|------|------|
532532
| **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. |
534534

535535
<a name="execute-stored-procedure"></a>
536536

@@ -552,9 +552,9 @@ Runs a stored procedure on an SQL database.
552552
| Name | Type |
553553
|------|------|
554554
| **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 |
558558
| **Status code** | The status code from the **Execute stored procedure** operation |
559559

560560
<a name="get-rows"></a>
@@ -577,7 +577,7 @@ Gets the table rows that match the specified **Where condition** value.
577577
| Name | Type |
578578
|------|------|
579579
| **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. |
581581

582582
*Example*
583583

@@ -619,8 +619,8 @@ None.
619619
| Name | Type |
620620
|------|------|
621621
| **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. |
624624
| **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. |
625625

626626
<a name="insert-row"></a>

0 commit comments

Comments
 (0)