Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions content/en/docs/refguide/runtime/data-storage/saphana.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@

The behavior of Mendix using an SAP HANA database has some minor differences when compared with using a PostgreSQL database. These differences are documented below.

## SAP HANA JDBC driver

Check failure on line 11 in content/en/docs/refguide/runtime/data-storage/saphana.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Mendix.HeadingTitleCase] Use title case capitalization for 'SAP HANA JDBC driver'. Raw Output: {"message": "[Mendix.HeadingTitleCase] Use title case capitalization for 'SAP HANA JDBC driver'.", "location": {"path": "content/en/docs/refguide/runtime/data-storage/saphana.md", "range": {"start": {"line": 11, "column": 4}}}, "severity": "ERROR"}

Starting with Mendix version 11.15.0 and 11.12.5, we no longer distribute the SAP HANA JDBC driver with Studio Pro, because of licensing issues.

If you deploy your app to [SAP BTP using the Mendix Portal](/developerportal/deploy/sap-cloud-platform/), the driver will be added to your app during deployment. No special treatment is necessary.

If you want to test your app locally against a SAP HANA database or deploy it using your own infrastructure, you will need to add the JDBC driver to your app like any other 3rd party jar file using one of these two methods:
* Download the SAP HANA JDBC driver manually from [Maven Central](https://central.sonatype.com/artifact/com.sap.cloud.db.jdbc/ngdbc) and add it to the `userlib` folder in your app.
* Use [Managed Dependencies](/refguide/managed-dependencies/) to add a dependency with Group ID `com.sap.cloud.db.jdbc` and Artifact ID `ngdbc`. This adds the driver to the `vendorlib` folder in your app.

We recommend using the latest driver version that has major version 2.

## Behavior of Unlimited and Very Long Strings

### Comparison Functions
Expand Down