Skip to content

Commit ccc1272

Browse files
fixed images
1 parent 4fcb415 commit ccc1272

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

  • content/en/docs/appstore/use-content/platform-supported-content/modules

content/en/docs/appstore/use-content/platform-supported-content/modules/databricks-edc.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,32 @@ To connect your Mendix application to Databricks with the External Database conn
2727
* **Artifact ID** - set to **databricks-jdbc**
2828
* **Version** - set to **2.7.1**
2929

30-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/JavaDependency.png" >}}
30+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/JavaDependency.png" >}}
3131

3232
* To install the dependency manually, download version 2.7.1 of the [JDBC driver](https://www.databricks.com/spark/jdbc-drivers-archive) that Databricks provides and put the .jar file into the *userlib* of your Mendix project.
3333

3434
3. Run you Mendix project and run the [Connect to Database wizard](/appstore/modules/external-database-connector/#configuration), selecting **Other** as the database type.
3535

36-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/DatabricksConfig.png" >}}
36+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/DatabricksConfig.png" >}}
3737

3838
4. Provide a name for the database connection document.
3939
5. Enter the following connection details:
4040

4141
* **User name** - set to **token**
4242
* **Password** - set to the personal access token (PAT) that you can generate through the user settings in Databricks:
4343

44-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/PAT.png" >}}
44+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/PAT.png" >}}
4545

4646
7. In your Databricks account find the JDBC URL related to the SQL warehouse or cluster which you are using.
4747
8. Copy the URL into the **JDBC URL** field and add *UID=token;PWD=`PAT`*, where `PAT` is your actual PAT.
4848

49-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/JDBC_URL.png" >}}
49+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/JDBC_URL.png" >}}
5050

5151
9. Click **Test Connection** to verify the connection details, and then click **Save**.
5252

5353
Your Mendix app now connects to Databricks with the provided connection details. When the connection is successful, you can see your Databricks tables in your Mendix app.
5454

55-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/Database_structure.png" >}}
55+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/Database_structure.png" >}}
5656

5757
You can now configure the queries that you need to run on your Databricks database. The following section of this document provides an example of a common query. For general information about creating queries, see [External Database Connector: Querying a Database](/appstore/modules/external-database-connector/#query-database) and [External Database Connector: Using Query Response](/appstore/modules/external-database-connector/#use-query-response).
5858

@@ -85,7 +85,7 @@ INSERT INTO customerData (name, address, postal_code, gender) VALUES
8585
('Sophie Jansen', 'Kersenstraat 12, Fruitdorp', '0123TU', 'Female');
8686
```
8787

88-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/SQL_Editor.png" >}}
88+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/SQL_Editor.png" >}}
8989

9090
### Querying the Data
9191

@@ -101,7 +101,7 @@ After you have created a table with some entries, you can now be query from your
101101

102102
4. Click **Run Query**.
103103

104-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/Query.png" >}}
104+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/Query.png" >}}
105105

106106
5. Verify that the results are correct, and then generate the required entity to collect the data in your Mendix application. For more information, see [External Database Connector: Creating an Entity from the Response](/appstore/modules/external-database-connector/#create-entity).
107107
6. Create a microflow that will run the query by doing the following steps:
@@ -118,6 +118,6 @@ After you have created a table with some entries, you can now be query from your
118118
* **List name** - enter *Customerdata_list*
119119
11. Click **OK**.
120120

121-
{{< figure src="static/attachments/appstore/platform-supported-content/modules/databricks/JA_Query.png" >}}
121+
{{< figure src="/attachments/appstore/platform-supported-content/modules/databricks/JA_Query.png" >}}
122122

123123
7. Link the microflow to a microflow button and use the Debugger to test if the objects are properly returned.

0 commit comments

Comments
 (0)