{{ cross_reference|safe }}
{{ heading|safe }}
This driver provides access to ClickHouse, an open-source data warehouse and analytical database.
The ClickHouse driver can be installed with dbc:
dbc install clickhouseTo use the driver, provide the URI of a ClickHouse database as the uri option.
from adbc_driver_manager import dbapi
conn = dbapi.connect(
driver="clickhouse",
db_kwargs={
"uri": "http://localhost:8123/",
}
)Note: The example above is for Python using the adbc-driver-manager package but the process will be similar for other driver managers.
{{ features|safe }}
{{ types|safe }}
{{ footnotes|safe }}