Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ The [Snowflake REST SQL connector](https://marketplace.mendix.com/link/component

The Snowflake REST SQL connector supports the following:

1. **Authentication:**
* Authentication:

* Key-pair authentication (using PKCS #8 standard RSA keys)
* OAuth authentication

2. **Functionality:** Execute SQL statements on Snowflake via REST calls from your Mendix application. These statements allow you to perform the following tasks:
* Functionality: Execute SQL statements on Snowflake via REST calls from your Mendix application. These statements allow you to perform the following tasks:

* Read data from Snowflake.
* Write data to Snowflake.
Expand Down Expand Up @@ -216,6 +216,19 @@ This table maps Mendix attribute types to Snowflake data types, along with commo
| DateTime | `TIMESTAMP_LTZ` | TIMESTAMP_LTZ / TEXT | Local time zone; stored in UTC. |
| DateTime | `TIMESTAMP_NTZ` | TIMESTAMP_NTZ / TEXT | No time zone; stored in UTC. |

## Proxy Usage

Since version 3.1.0, the Snowflake REST SQL Connector supports using a proxy to make your REST calls. You can use the new `ProxySettings` entity to enable a proxy by performing the following steps:

1. Create a **ProxySettings** object.
2. Set the `Host` and `Port` attributes to the host of the proxy and the port on which the proxy is listening.
3. Optional: Set the `User` and `Password` to authenticate against your proxy.
4. Associate the **ProxySettings** to your **ConnectionDetails** object (when using the **POST_v1_ExecuteStatement** operation), or the **CortexConnection** object (when using the **CortexAnalyst** operation).

Once configured, the connector automatically detects the `ProxySettings` object and routes REST requests through the specified proxy.

{{< figure src="/attachments/appstore/platform-supported-content/modules/snowflake-rest-sql/ProxyExample.png" >}}

## Technical Reference

To help you work with the Snowflake REST SQL connector, the following sections of this document list the available entities, enumerations, and activities that you can use in your application.
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.