Skip to content
Open
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

Making your REST calls via a proxy is now supported by the Snowflake REST SQL Connector. To make it easy to do so we have introduced the **ProxySettings** entity. To use a proxy do the following:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

version?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reached out to the team on Slack.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That would be version 3.1.0. It hasn't been released yet, but will be soon. I think it wouldn't hurt to already publish

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I can also prepare the PR and you can ping me when you're ready to release?


1. Create a **ProxySettings** object
2. Set the `Host` and `Port` attributes to the host of the proxy and the Port the proxy is listening on
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** 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.