Skip to content

Commit 7394e08

Browse files
committed
Review
1 parent 659637a commit 7394e08

1 file changed

Lines changed: 8 additions & 10 deletions

File tree

content/en/docs/appstore/use-content/platform-supported-content/modules/database-connector-mx10.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ This connector supports the following statements:
5555

5656
### Limitations
5757

58-
* `SELECT` queries and `Stored Procedure` can be saved only if they are successfully executed and a response structure is created (no more limitation from Studio Pro 10.20 onwards)
58+
* `SELECT` queries and `Stored Procedure` can be saved only if they are successfully executed and a response structure is created (this is no longer a limitation as of Studio Pro 10.20)
5959
* The connector supports columns and stored procedure parameters with primitive data types only
60-
* If column names contain special characters, use an alias for the column name (no more limitation from Studio Pro 10.20 onwards)
60+
* If column names contain special characters, use an alias for the column name (this is no longer a limitation as of Studio Pro 10.20)
6161
* Parameters are only supported for filter values (prepared statements)
6262
* Certificate-based authentication for PostgreSQL is not supported on macOS
6363

@@ -127,12 +127,12 @@ Then, use the parameter in the query:
127127
If you need to pass a list of values to a parameter, you can use the following approach:
128128

129129
`WITH empids AS (
130-
SELECT empid FROM json_table( {EmpIdList}, '$[*]' columns ( empid number path '$' ))
130+
SELECT empid FROM json_table( {EmpIdList}, '$[*]' columns ( empid number path '$' ))
131131
)
132132
SELECT *
133133
FROM emp WHERE empno IN (SELECT empid FROM empids);`
134134

135-
where parameter `EmpIdList` is of type String with value [1,7946,3,4,7942,7943,7945]
135+
where parameter `EmpIdList` is of type String with the value `[1,7946,3,4,7942,7943,7945]`.
136136
{{% /alert %}}
137137

138138
### Using Query Response {#use-query-response}
@@ -178,15 +178,13 @@ You can now use the microflow in your app. Below is an example of a configured m
178178
See the [Integration Activities](/refguide/integration-activities/) section of the *Studio Pro Guide* for further explanation of the properties in this activity.
179179
See the [Call Stored Procedure](/howto/integration/use-the-external-database-connector/) section of *Use the External Database Connector* for more information on how to call a stored procedure.
180180

181-
### Saving Intermediate queries
181+
### Saving Intermediate Queries
182182

183-
From Studio pro 10.20 onwards, it is possible to save queries at intermediate stages.
183+
As of Studio Pro 10.20, it is possible to save queries at intermediate stages.
184184

185-
Mendix’s standard save behavior is implemented, including the dot indicator in the tab to signify unsaved changes.
185+
Studio Pro's standard save behavior is implemented, including the dot indicator in the tab to signify unsaved changes.
186186

187-
Press Ctrl+S to store changes when switching to a different query or performing another action.
188-
189-
Ensure not to use queries which are saved intermediately in the Query External Database Activity of microflow, as it might lead to runtime exception.
187+
Press <kbd>Ctrl</kbd> + <kbd>S</kbd> to store changes when switching to a different query or performing another action. Make sure to not to use queries that are saved intermediately in the [Query External Database](/refguide/query-external-database/) activity of a microflow, as it might lead to runtime exception.
190188

191189
## Use Certificate-Based Authentication for PostgreSQL Connections {#postgres-ssl}
192190

0 commit comments

Comments
 (0)