amoeba commented on code in PR #4525:
URL: https://github.com/apache/arrow-adbc/pull/4525#discussion_r3605316207
##########
docs/source/python/quickstart.rst:
##########
@@ -181,3 +181,26 @@ We can get the Arrow schema of a table:
>>> conn.adbc_get_table_schema("sample")
ints: int64
strs: string
+
+Installing Drivers
+==================
+
+You'll need to install an ADBC driver for the database you want to connect to.
The easiest way is using `dbc <https://docs.columnar.tech/dbc>`_:
Review Comment:
Something like this?
```rst
Installing Drivers
------------------
See :ref:`driver-table-install` for instructions on installing ADBC drivers
for
the database you want to connect to. For the example below, you could install
`dbc <https://docs.columnar.tech/dbc>`__ and run ``dbc install sqlite``. The
ABDC project also publishes official wheels for the SQLite driver so you can
also run ``pip install adbc_driver_sqlite`` and replace the import of
``adbc_driver_manager`` with ``adbc_driver_sqlite`` below.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]