From 34532ca056fe7f18d60bc7610b70ed5919fa5e9b Mon Sep 17 00:00:00 2001
From: David Li
Date: Thu, 28 May 2026 08:14:21 +0900
Subject: [PATCH] docs: note URI support
---
docs/datafusion.md | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/docs/datafusion.md b/docs/datafusion.md
index faa41df..b2a6a93 100644
--- a/docs/datafusion.md
+++ b/docs/datafusion.md
@@ -44,6 +44,14 @@ from adbc_driver_manager import dbapi
dbapi.connect(driver="datafusion")
```
+You can provide the URI `datafusion://`, but no other URI is currently accepted:
+
+```python
+from adbc_driver_manager import dbapi
+
+dbapi.connect("datafusion://")
+```
+
Note: The example above is for Python using the [adbc-driver-manager](https://pypi.org/project/adbc-driver-manager) package but the process will be similar for other driver managers. See [adbc-quickstarts](https://github.com/columnar-tech/adbc-quickstarts).
## Feature & Type Support