nick-monda
New Contributor III

We are using the databricks_sql python sdk: 

```python

from databricks import sql as databricks_sql
connection = databricks_sql.connect(
    server_hostname=server_hostname,
    http_path=http_path,
    access_token=access_token
)

with connection.cursor() as cursor:
    cursor.execute(query)
    rows = cursor.fetchall()
```



 
 
Pretty sure we are using warehouses.