Skip to content

Commit d40e337

Browse files
committed
Updates per feedback
1 parent b0c73cb commit d40e337

File tree

1 file changed

+11
-18
lines changed

1 file changed

+11
-18
lines changed

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

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 08/17/2022
8+
ms.date: 08/19/2022
99
tags: connectors
1010
---
1111

@@ -435,10 +435,9 @@ When you call a stored procedure by using the SQL Server connector, the returned
435435

436436
> [!NOTE]
437437
>
438-
> If you get an error that Azure Logic Apps can't generate a schema,
439-
> check that your sample output's syntax is correctly formatted.
440-
> If you still can't generate the schema, in the **Schema** box,
441-
> manually enter the schema.
438+
> If you get an error that Azure Logic Apps can't generate a schema, check that your
439+
> sample output's syntax is correctly formatted. If you still can't generate the schema,
440+
> in the **Schema** box, manually enter the schema.
442441
443442
1. When you're done, save your workflow.
444443

@@ -479,7 +478,7 @@ Deletes and returns the table rows that match the specified **Where condition**
479478
| Name | Key | Required | Type | Description |
480479
|------|-----|----------|------|-------------|
481480
| **Table name** | `tableName` | True | String | The name for the table |
482-
| **Where condition** | `columnValuesForWhereCondition` | True | Object | This object contains the column names and corresponding values to delete. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*, which also lets you delete single or specific rows.|
481+
| **Where condition** | `columnValuesForWhereCondition` | True | Object | This object contains the column names and corresponding values used for selecting the rows to delete. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*, which also lets you specify single or specific rows to delete. |
483482

484483
#### Returns
485484

@@ -490,7 +489,7 @@ Deletes and returns the table rows that match the specified **Where condition**
490489

491490
*Example*
492491

493-
The following example shows sample parameter values for the **Delete rows** action and the resulting SQL query that runs:
492+
The following example shows sample parameter values for the **Delete rows** action:
494493

495494
**Sample values**
496495

@@ -511,8 +510,6 @@ The following example shows sample parameter values for the **Delete rows** acti
511510
},
512511
```
513512

514-
**SQL query**: `DELETE FROM tableName1 WHERE columnName1 = columnValue1 AND columnName2 = columnValue2`
515-
516513
<a name="execute-query"></a>
517514

518515
### Execute Query
@@ -573,7 +570,7 @@ Gets the table rows that match the specified **Where condition** value.
573570
| Name | Key | Required | Type | Description |
574571
|------|-----|----------|------|-------------|
575572
| **Table name** | `tableName` | True | String | The name for the table |
576-
| **Where condition** | `columnValuesForWhereCondition` | False | Dynamic | This object contains the column names and corresponding values to get. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*, which also lets you get single or specific rows. |
573+
| **Where condition** | `columnValuesForWhereCondition` | False | Dynamic | This object contains the column names and corresponding values used for selecting the rows to get. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*, which also lets you specify single or specific rows to get. |
577574

578575
#### Returns
579576

@@ -584,7 +581,7 @@ Gets the table rows that match the specified **Where condition** value.
584581

585582
*Example*
586583

587-
The following example shows sample parameter values for the **Get rows** action and the resulting SQL query that runs:
584+
The following example shows sample parameter values for the **Get rows** action:
588585

589586
**Sample values**
590587

@@ -605,8 +602,6 @@ The following example shows sample parameter values for the **Get rows** action
605602
},
606603
```
607604

608-
**SQL query**: `SELECT * FROM tableName1 WHERE columnName1 = columnValue1 AND columnName2 = columnValue2`
609-
610605
<a name="get-tables"></a>
611606

612607
### Get tables
@@ -658,8 +653,8 @@ Updates the specified columns in all the table rows that match the specified **W
658653
| Name | Key | Required | Type | Description |
659654
|------|-----|----------|------|-------------|
660655
| **Table name** | `tableName` | True | String | The name for the table |
661-
| **Where condition** | `columnValuesForWhereCondition` | True | Dynamic | This object contains the column names and corresponding values to update. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*. |
662-
| **Set columns** | `setColumns` | True | Dynamic | This object contains the column names and the corresponding values to use for the update. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*, which also lets you update single or specific rows. |
656+
| **Where condition** | `columnValuesForWhereCondition` | True | Dynamic | This object contains the column names and corresponding values for selecting the rows to update. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*, which also lets you specify single or specific rows to update. |
657+
| **Set columns** | `setColumns` | True | Dynamic | This object contains the column names and the corresponding values to use for the update. To provide this information, follow the *key-value* pair format, for example, *columnName* and *columnValue*. |
663658

664659
#### Returns
665660

@@ -670,7 +665,7 @@ Updates the specified columns in all the table rows that match the specified **W
670665

671666
*Example*
672667

673-
The following example shows sample parameter values for the **Update rows** action and the resulting SQL query that runs:
668+
The following example shows sample parameter values for the **Update rows** action:
674669

675670
**Sample values**
676671

@@ -691,8 +686,6 @@ The following example shows sample parameter values for the **Update rows** acti
691686
},
692687
```
693688

694-
**SQL query**: `UPDATE * FROM tableName1 WHERE columnName1 = columnValue1 AND columnName2 = columnValue2`
695-
696689
## Troubleshoot problems
697690

698691
<a name="connection-problems"></a>

0 commit comments

Comments
 (0)