lidavidm commented on code in PR #4525:
URL: https://github.com/apache/arrow-adbc/pull/4525#discussion_r3599614714


##########
docs/source/rust/quickstart.rst:
##########
@@ -85,3 +85,26 @@ We can then execute the query to get an Arrow 
``RecordBatchReader``:
        let batch = batch.expect("Failed to read batch");
        println!("{:?}", batch);
    }
+
+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>`_:
+
+.. code-block:: shell
+
+   # Install dbc
+   curl -fsSL https://dbc.sh | sh
+
+   # Install a driver (e.g., PostgreSQL)
+   dbc install postgresql

Review Comment:
   Maybe it would be better to link to a single page for this? Also because 
recommending people `curl | sh` a third party script with no explanation 
doesn't look great.



-- 
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]

Reply via email to