> For the complete documentation index, see [llms.txt](https://docs.infotopics.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.infotopics.com/writebackextreme/v5.0/installation-guide/getting-started/containerization/odbc-connections.md).

# ODBC connections

ODBC Databases with unique setups: This document describes databases with distinct communication methods:

* Snowflake ODBC
* Databricks

ODBC-based drivers are exposed and can be used via the driver name.&#x20;

* Snowflake ODBC: `SnowflakeDSIIDriver`
* Databricks: `DatabricksDriver`

### Using `odbc.ini` and or `odbcinst.ini`

If it's necessary to use an `odbc.ini` file for defining connections, create a `VOLUME` pointed to `/etc/odbc.ini` or populate the `odbc.ini` file with content beforehand. For driver modifications, use `/etc/odbcinst.ini` as needed.

### Snowflake ODBC

We recommend to use the "manual DSN" setup in WriteBackExtreme when using the containerized version.

Example DSN string:

```
driver=SnowflakeDSIIDriver;....
```

### Databricks

To connect to Databricks, a "manual DSN" isn't available yet. Use the following workaround instead. The table below lists all required DSN attributes.

<table><thead><tr><th width="161">Key</th><th width="102" data-type="checkbox">Required</th><th width="118" data-type="checkbox">Fixed value</th><th>Value/Example</th></tr></thead><tbody><tr><td>driver</td><td>true</td><td>true</td><td>DatabricksDriver</td></tr><tr><td>httpPath</td><td>true</td><td>false</td><td>e.g. /sql/1.0/warehouses/123456789</td></tr><tr><td>thriftTransport</td><td>true</td><td>true</td><td>2</td></tr><tr><td>AuthMech</td><td>true</td><td>true</td><td>3</td></tr><tr><td>Host</td><td>true</td><td>false</td><td>e.g. abc-123456789.azuredatabricks.net</td></tr><tr><td>Port</td><td>true</td><td>true</td><td>443</td></tr><tr><td>Ssl</td><td>true</td><td>true</td><td>1</td></tr><tr><td>transportMode</td><td>true</td><td>true</td><td>http</td></tr></tbody></table>

The attributes specified will generate a DSN string as follows:

<pre><code><strong>driver=DatabricksDriver;HttpPath={htthPath};thriftTransport=2;AuthMech=3;Host={host};Port=443;ssl=1;transportMode=http
</strong></code></pre>

<figure><img src="/files/Tl8yLOyIo49USPe8cZ9m" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.infotopics.com/writebackextreme/v5.0/installation-guide/getting-started/containerization/odbc-connections.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
