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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -522,7 +522,7 @@ Runs a query on an SQL database.
522
522
523
523
| Name | Key | Required | Type | Description |
524
524
|------|-----|----------|------|-------------|
525
-
|**Query**|`query`| True | Dynamic | The body for your query |
525
+
|**Query**|`query`| True | Dynamic | The body for your SQL query |
526
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
@@ -545,14 +545,14 @@ Runs a stored procedure on an SQL database.
545
545
| Name | Key | Required | Type | Description |
546
546
|------|-----|----------|------|-------------|
547
547
|**Procedure name**|`storedProcedureName`| True | String | The name for your stored procedure |
548
-
|**Parameters**|`storedProcedureParameters`| False | Dynamic | The parameters for stored procedure. <br><br>**Note**: If the stored procedure requires input parameters, you must provide these parameters. |
548
+
|**Parameters**|`storedProcedureParameters`| False | Dynamic | The parameters for your stored procedure. <br><br>**Note**: If the stored procedure requires input parameters, you must provide these parameters. |
549
549
550
550
#### Returns
551
551
552
552
| Name | Type |
553
553
|------|------|
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. |
554
+
|**Result**| An array object that returns all the stored procedure results |
555
+
|**Result Result Sets**| An array object that returns one stored procedure result at a time. A **For each** loop is automatically added to your workflow to iterate through the array. |
556
556
|**Result Stored Procedure Parameters**| The final values of the stored procedure's output and input-output parameters |
557
557
|**Result Return Code**| The return code from the stored procedure |
558
558
|**Status Code**| The status code from the **Execute stored procedure** operation |
@@ -608,7 +608,7 @@ The following example shows sample parameter values for the **Get rows** action:
0 commit comments