From bd4e8364ef5b13dbef763c3da220a26c8fc1d263 Mon Sep 17 00:00:00 2001 From: Emil Sadek Date: Mon, 17 Aug 2026 14:45:02 -0700 Subject: [PATCH] docs: add chdb example --- docs/databases.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/databases.md b/docs/databases.md index 0af8a9f..96072d1 100644 --- a/docs/databases.md +++ b/docs/databases.md @@ -81,6 +81,26 @@ Connect to BigQuery: databow --driver bigquery --option adbc.bigquery.sql.project_id=my-gcp-project --option adbc.bigquery.sql.dataset_id=bigquery-public-data ``` +## chDB + +Install the chDB driver with dbc: + +```sh +dbc install chdb +``` + +Connect to chDB (in-memory): + +```sh +databow --driver chdb +``` + +Connect to chDB (persistent): + +```sh +databow --driver chdb --uri data.chdb +``` + ## Citus Install the PostgreSQL driver with dbc: