> ## Documentation Index
> Fetch the complete documentation index at: https://arivu.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Databricks SDK

> Connect Arivu to your Databricks lakehouse catalog.

## SDK Configuration

Integrating Databricks within your Python application is seamless. Utilize the `Arivu.connect()` static factory.

<CodeGroup>
  ```python python theme={null}
  from arivu import Arivu

  db = Arivu.connect(
      dialect="databricks",
      host="adb-123.azuredatabricks.net",
      http_path="/sql/1.0/endpoints/abc123",
      access_token="dapi...",
      catalog="main",
      schema_name="default"
  )
  ```
</CodeGroup>

<Info>
  Setting `mode="user"` prevents Arivu from executing destructive SQL operations (like `DROP` or `UPDATE`). They will instead be held in an approval queue.
</Info>
