amoeba commented on code in PR #4525: URL: https://github.com/apache/arrow-adbc/pull/4525#discussion_r3589960076
########## docs/source/client_libraries.rst: ########## @@ -0,0 +1,189 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +.. or more contributor license agreements. See the NOTICE file +.. distributed with this work for additional information +.. regarding copyright ownership. The ASF licenses this file +.. to you under the Apache License, Version 2.0 (the +.. "License"); you may not use this file except in compliance +.. with the License. You may obtain a copy of the License at +.. +.. http://www.apache.org/licenses/LICENSE-2.0 +.. +.. Unless required by applicable law or agreed to in writing, +.. software distributed under the License is distributed on an +.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +.. KIND, either express or implied. See the License for the +.. specific language governing permissions and limitations +.. under the License. + +================ +Client Libraries +================ + +ADBC client libraries let you connect to databases and execute queries from your language or languages of choice. +Because all ADBC :doc:`drivers <driver/index>` expose the same :doc:`standard C ABI <format/specification>`, a single client library can generally use drivers written any language using the same client API. + +The client libraries in a particular language always provide bindings to the ADBC API and most also offer a driver manager. + +Quick Start +=========== + +Get started with ADBC in your language of choice: + +.. tab-set:: + + .. tab-item:: Python + + .. code-block:: bash + + pip install adbc-driver-manager + + See the :doc:`Python Quickstart <python/quickstart>` for usage instructions. + + .. tab-item:: C/C++ + + See the :doc:`C/C++ Quickstart <cpp/quickstart>` for installation and usage instructions. + + .. tab-item:: C# + + .. code-block:: bash + + dotnet add package Apache.Arrow.Adbc.Client + + See the :doc:`C# Quickstart <csharp/quickstart>` for usage instructions. + + .. tab-item:: Go + + .. code-block:: bash + + go get github.com/apache/arrow-adbc/go/adbc + + See the `Go Documentation <https://pkg.go.dev/github.com/apache/arrow-adbc/go/adbc>`_ for usage instructions. + + .. tab-item:: Java + + .. code-block:: xml + + <dependency> + <groupId>org.apache.arrow.adbc</groupId> + <artifactId>adbc-driver-manager</artifactId> + </dependency> + + See the :doc:`Java Quickstart <java/quickstart>` for usage instructions. + + .. tab-item:: JavaScript + + .. code-block:: bash + + npm install @apache-arrow/adbc-driver-manager + + See the :doc:`JavaScript Quickstart <javascript/quickstart>` for usage instructions. + + .. tab-item:: R + + .. code-block:: r + + install.packages("adbcdrivermanager") + + See the :doc:`R Quickstart <r/quickstart>` for usage instructions. + + .. tab-item:: Ruby + + .. code-block:: bash + + bundle add red-adbc + + See the :doc:`Ruby Quickstart <ruby/quickstart>` for usage instructions. + + .. tab-item:: Rust + + .. code-block:: bash + + cargo add arrow-adbc Review Comment: yep -- 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]
