lidavidm commented on code in PR #248:
URL: https://github.com/apache/arrow-site/pull/248#discussion_r1049938054
##########
_posts/2022-12-31-arrow-adbc.md:
##########
@@ -0,0 +1,222 @@
+---
+layout: post
+title: "Introducing ADBC: Database Access for Apache Arrow"
+date: "2022-12-31 00:00:00"
+author: pmc
+categories: [application]
+---
+<!--
+{% comment %}
+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.
+{% endcomment %}
+-->
+
+The Arrow community has accepted version 1.0.0 of the [Arrow Database
Connectivity (ADBC)][adbc] specification.
+ADBC is an API standard for Arrow-based database access.
+It defines abstract APIs in C, Go, and Java for performing common database
tasks using Arrow data, like executing queries and getting basic metadata.
+
+Just like time-tested [JDBC][jdbc] and [ODBC][odbc], ADBC defines
database-independent interaction APIs, and relies on drivers to implement those
APIs for particular databases.
+It aims to provide a single API that works with Arrow-native protocols, like
[Arrow Flight SQL][flight-sql]; vendor-specific APIs that offer Arrow data,
such as those offered by ClickHouse or Google BigQuery; and non-columnar
protocols and APIs like the PostgreSQL wire format or JDBC.
+
+In other words: **ADBC is a single API for getting Arrow data in and out of
databases**.
+Underneath, ADBC driver implementations take care of bridging the actual
system.
+Arrow-native systems can directly pass through data without conversion, while
the driver takes care of converting data in other cases, saving the application
from doing the work.
+
+## Examples
+
+*Note: implementations are still under development, separate from the API
standard itself. Examples are subject to change.*
Review Comment:
It's "subject to change".
--
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]