This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 64ba941f2 publish documentation
64ba941f2 is described below
commit 64ba941f22b286c049b00706694a97a7d97bbf0b
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Mar 3 00:55:07 2025 +0000
publish documentation
---
main/cpp/concurrency.html | 2 +-
main/cpp/driver_example.html | 2 +-
main/cpp/driver_manager.html | 2 +-
main/cpp/index.html | 2 +-
main/cpp/quickstart.html | 2 +-
main/csharp/index.html | 2 +-
main/development/contributing.html | 2 +-
main/development/nightly.html | 2 +-
main/development/releasing.html | 2 +-
main/development/versioning.html | 2 +-
main/driver/authoring.html | 2 +-
main/driver/duckdb.html | 2 +-
main/driver/flight_sql.html | 2 +-
main/driver/installation.html | 2 +-
main/driver/jdbc.html | 2 +-
main/driver/postgresql.html | 2 +-
main/driver/snowflake.html | 2 +-
main/driver/sqlite.html | 2 +-
main/driver/status.html | 2 +-
main/faq.html | 2 +-
main/format/comparison.html | 2 +-
main/format/how_manager.html | 2 +-
main/format/related_work.html | 2 +-
main/format/specification.html | 2 +-
main/format/versioning.html | 2 +-
main/genindex.html | 2 +-
main/glossary.html | 2 +-
main/index.html | 2 +-
main/java/driver_manager.html | 2 +-
main/java/index.html | 2 +-
main/java/quickstart.html | 2 +-
main/py-modindex.html | 2 +-
main/python/api/adbc_driver_flightsql.html | 2 +-
main/python/api/adbc_driver_manager.html | 2 +-
main/python/api/adbc_driver_postgresql.html | 2 +-
main/python/api/adbc_driver_sqlite.html | 2 +-
main/python/api/index.html | 2 +-
main/python/driver_manager.html | 2 +-
main/python/index.html | 2 +-
main/python/quickstart.html | 2 +-
main/python/recipe/driver_manager.html | 2 +-
main/python/recipe/flight_sql.html | 2 +-
main/python/recipe/index.html | 2 +-
main/python/recipe/postgresql.html | 2 +-
main/python/recipe/sqlite.html | 2 +-
main/r/adbcbigquery/pkgdown.yml | 2 +-
main/r/adbcdrivermanager/pkgdown.yml | 2 +-
main/r/adbcdrivermanager/reference/adbc_connection_init.html | 4 ++--
main/r/adbcdrivermanager/reference/adbc_database_init.html | 2 +-
main/r/adbcdrivermanager/reference/adbc_statement_init.html | 6 +++---
main/r/adbcdrivermanager/search.json | 2 +-
main/r/adbcflightsql/pkgdown.yml | 2 +-
main/r/adbcpostgresql/pkgdown.yml | 2 +-
main/r/adbcsnowflake/pkgdown.yml | 2 +-
main/r/adbcsqlite/pkgdown.yml | 2 +-
main/r/index.html | 2 +-
main/search.html | 2 +-
57 files changed, 60 insertions(+), 60 deletions(-)
diff --git a/main/cpp/concurrency.html b/main/cpp/concurrency.html
index d6e206fe8..cde217002 100644
--- a/main/cpp/concurrency.html
+++ b/main/cpp/concurrency.html
@@ -15,7 +15,7 @@
<meta name="description" content="In general, objects allow serialized access
from multiple threads: one thread may make a call, and once finished, another
thread may make a call. They do not allow concurrent access from multiple t..."
/>
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Driver Example"
href="driver_example.html" /><link rel="prev" title="Driver Manager"
href="driver_manager.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Concurrency and Thread Safety - ADBC 17 (dev)
documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/cpp/driver_example.html b/main/cpp/driver_example.html
index e08ef2ba5..1c3d3bf72 100644
--- a/main/cpp/driver_example.html
+++ b/main/cpp/driver_example.html
@@ -15,7 +15,7 @@
<meta name="description" content="Recipe source: driver_example.cc Here we’ll
show the structure of building an ADBC driver in C++ using the ADBC driver
framework library. This is the same library that ADBC uses to build its
SQLite..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="C/C++ API
Reference" href="api/index.html" /><link rel="prev" title="Concurrency and
Thread Safety" href="concurrency.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Driver Example - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/cpp/driver_manager.html b/main/cpp/driver_manager.html
index 3498de3aa..7c972073e 100644
--- a/main/cpp/driver_manager.html
+++ b/main/cpp/driver_manager.html
@@ -15,7 +15,7 @@
<meta name="description" content="The driver manager is a library that
implements the ADBC API by delegating to dynamically-loaded drivers. This
allows applications to use multiple drivers simultaneously, and decouple
themselves fr..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Concurrency and
Thread Safety" href="concurrency.html" /><link rel="prev" title="Quickstart"
href="quickstart.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Driver Manager - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/cpp/index.html b/main/cpp/index.html
index 0006881c7..61d9da823 100644
--- a/main/cpp/index.html
+++ b/main/cpp/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="Quickstart- Installation, Building, Using
ADBC., Driver Manager- Installation, Usage, API Reference., Concurrency and
Thread Safety, Driver Example- Installation, Building, Building an ADBC Driver
..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Quickstart"
href="quickstart.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>C and C++ - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/cpp/quickstart.html b/main/cpp/quickstart.html
index ce9d9a201..17946578e 100644
--- a/main/cpp/quickstart.html
+++ b/main/cpp/quickstart.html
@@ -15,7 +15,7 @@
<meta name="description" content="Recipe source: quickstart.cc Here we’ll
briefly tour basic features of ADBC with the SQLite driver in C++17.
Installation: This quickstart is actually a literate C++ file. You can clone
the reposit..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Driver Manager"
href="driver_manager.html" /><link rel="prev" title="C and C++"
href="index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Quickstart - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/csharp/index.html b/main/csharp/index.html
index 004ef46ee..aa490c111 100644
--- a/main/csharp/index.html
+++ b/main/csharp/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="The ADBC C# libraries are under development,
supporting: A native driver to Google BigQuery, A way to import/export native
(C/C++) drivers, Bindings to the Snowflake driver." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Java"
href="../java/index.html" /><link rel="prev" title="C/C++ API Reference"
href="../cpp/api/index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>C#/.NET - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/development/contributing.html
b/main/development/contributing.html
index 5d3207298..65026cb4f 100644
--- a/main/development/contributing.html
+++ b/main/development/contributing.html
@@ -15,7 +15,7 @@
<meta name="description" content="To contribute, and for build instructions,
see CONTRIBUTING.md in the repository." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Nightly
Packages" href="nightly.html" /><link rel="prev" title="Related Work"
href="../format/related_work.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Contributing - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/development/nightly.html b/main/development/nightly.html
index b50d038eb..0c551c961 100644
--- a/main/development/nightly.html
+++ b/main/development/nightly.html
@@ -15,7 +15,7 @@
<meta name="description" content="Nightly builds of some binary packages are
available. C/C++: Conda users can install nightly builds from a Conda channel:
https://anaconda.org/arrow-adbc-nightlies This should be used with conda-fo..."
/>
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Versioning"
href="versioning.html" /><link rel="prev" title="Contributing"
href="contributing.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Nightly Packages - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/development/releasing.html b/main/development/releasing.html
index 6e930b6c6..8e82b0b3b 100644
--- a/main/development/releasing.html
+++ b/main/development/releasing.html
@@ -15,7 +15,7 @@
<meta name="description" content="This page provides detailed information on
the steps followed to perform a release. It can be used both as a guide to
learn the ADBC release process and as a comprehensive checklist for the
Release..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="prev" title="Versioning"
href="versioning.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Release Management Guide - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/development/versioning.html b/main/development/versioning.html
index 05e888a3c..e825832ec 100644
--- a/main/development/versioning.html
+++ b/main/development/versioning.html
@@ -15,7 +15,7 @@
<meta name="description" content="ADBC has multiple subcomponents with
independent version numbers all on the same release cycle. When a new release
is made, the overall release is assigned a release number (e.g. ADBC Release
12). ..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Release
Management Guide" href="releasing.html" /><link rel="prev" title="Nightly
Packages" href="nightly.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Versioning - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/authoring.html b/main/driver/authoring.html
index c69311992..bf83492ab 100644
--- a/main/driver/authoring.html
+++ b/main/driver/authoring.html
@@ -15,7 +15,7 @@
<meta name="description" content="Currently, new drivers can be written in C#,
C/C++, Go, and Java. A driver written in C/C++ or Go can be used from either of
those languages, as well as C#, Python, R, and Ruby. (C# can experimenta..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="ADBC API
Standard" href="../format/specification.html" /><link rel="prev" title="SQLite
Driver" href="sqlite.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Writing New Drivers - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/duckdb.html b/main/driver/duckdb.html
index 39765abba..d80a62875 100644
--- a/main/driver/duckdb.html
+++ b/main/driver/duckdb.html
@@ -15,7 +15,7 @@
<meta name="description" content="Available for: C/C++, GLib/Ruby, Go, Python,
R DuckDB provides ADBC support since version 0.8.0. Installation: See the
DuckDB documentation. Usage: ADBC support in DuckDB requires the driver
manage..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Flight SQL
Driver" href="flight_sql.html" /><link rel="prev" title="Driver Implementation
Status" href="status.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>DuckDB Support - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/flight_sql.html b/main/driver/flight_sql.html
index 85c81812e..d189d1c74 100644
--- a/main/driver/flight_sql.html
+++ b/main/driver/flight_sql.html
@@ -15,7 +15,7 @@
<meta name="description" content="Available for: C/C++, GLib/Ruby, Go, Java,
Python, R The Flight SQL Driver provides access to any database implementing a
Arrow Flight SQL compatible endpoint. Installation: C/C++ For conda-forge u..."
/>
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="JDBC Adapter"
href="jdbc.html" /><link rel="prev" title="DuckDB Support" href="duckdb.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Flight SQL Driver - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/installation.html b/main/driver/installation.html
index fe73fdcc7..b9cb3c620 100644
--- a/main/driver/installation.html
+++ b/main/driver/installation.html
@@ -15,7 +15,7 @@
<meta name="description" content="Source: The latest source release can be
downloaded from the Apache mirrors. Compilation instructions can be found in
CONTRIBUTING.md. C/C++: Install the appropriate driver package. You can use
con..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Driver
Implementation Status" href="status.html" /><link rel="prev" title="R"
href="../r/index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Installation - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/jdbc.html b/main/driver/jdbc.html
index d65897a45..add582862 100644
--- a/main/driver/jdbc.html
+++ b/main/driver/jdbc.html
@@ -15,7 +15,7 @@
<meta name="description" content="Available for: Java The JDBC Adapter
provides access to any database with a JDBC driver. Installation: Java Add a
dependency on org.apache.arrow.adbc:adbc-driver-flight-sql. For Maven users:
Usage:..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="PostgreSQL
Driver" href="postgresql.html" /><link rel="prev" title="Flight SQL Driver"
href="flight_sql.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>JDBC Adapter - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/postgresql.html b/main/driver/postgresql.html
index 307f0ff1f..6eb4642c1 100644
--- a/main/driver/postgresql.html
+++ b/main/driver/postgresql.html
@@ -15,7 +15,7 @@
<meta name="description" content="Available for: C/C++, GLib/Ruby, Go, Python,
R The PostgreSQL driver provides access to any database that supports the
PostgreSQL wire format. It wraps libpq, the client library for PostgreSQL.
The..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Snowflake
Driver" href="snowflake.html" /><link rel="prev" title="JDBC Adapter"
href="jdbc.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>PostgreSQL Driver - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/snowflake.html b/main/driver/snowflake.html
index c792e92a6..46b79c71f 100644
--- a/main/driver/snowflake.html
+++ b/main/driver/snowflake.html
@@ -15,7 +15,7 @@
<meta name="description" content="Available for: C/C++, GLib/Ruby, Go, Python,
R The Snowflake Driver provides access to Snowflake Database Warehouses.
Installation: C/C++ For conda-forge users: Go Python R Usage: To connect to a
S..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="SQLite Driver"
href="sqlite.html" /><link rel="prev" title="PostgreSQL Driver"
href="postgresql.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Snowflake Driver - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/sqlite.html b/main/driver/sqlite.html
index 056c2f415..5644bdb6e 100644
--- a/main/driver/sqlite.html
+++ b/main/driver/sqlite.html
@@ -15,7 +15,7 @@
<meta name="description" content="Available for: C/C++, GLib/Ruby, Go, Python,
R The SQLite driver provides access to SQLite databases. This driver is
essentially a “reference” driver that was used during ADBC development. It
gener..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Writing New
Drivers" href="authoring.html" /><link rel="prev" title="Snowflake Driver"
href="snowflake.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>SQLite Driver - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/driver/status.html b/main/driver/status.html
index 500aa8a6e..bbfa88438 100644
--- a/main/driver/status.html
+++ b/main/driver/status.html
@@ -15,7 +15,7 @@
<meta name="description" content="Implementation Status: Experimental drivers
are not feature-complete and the implementation is still progressing. Beta
drivers are (mostly) feature-complete but have only been available for a
short..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="DuckDB Support"
href="duckdb.html" /><link rel="prev" title="Installation"
href="installation.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Driver Implementation Status - ADBC 17 (dev)
documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/faq.html b/main/faq.html
index 336f9dc91..c6e8f9323 100644
--- a/main/faq.html
+++ b/main/faq.html
@@ -15,7 +15,7 @@
<meta name="description" content="What exactly is ADBC?: ADBC is: A set of
abstract APIs in different languages (C/C++, Go, and Java, with more on the
way) for working with databases and Arrow data. For example, result sets of
quer..." />
<link rel="index" title="Index" href="genindex.html" /><link rel="search"
title="Search" href="search.html" /><link rel="next" title="Glossary"
href="glossary.html" /><link rel="prev" title="Apache Arrow ADBC"
href="index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Frequently Asked Questions (FAQ) - ADBC 17 (dev)
documentation</title>
<link rel="stylesheet" type="text/css"
href="_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=354aac6f" />
diff --git a/main/format/comparison.html b/main/format/comparison.html
index 858beecce..309703449 100644
--- a/main/format/comparison.html
+++ b/main/format/comparison.html
@@ -15,7 +15,7 @@
<meta name="description" content="Equivalent concepts between ADBC and other
APIs:,,,,,,, Concept/API, ADBC, database/sql (Golang), DBAPI 2.0 (PEP 249),
Flight SQL, JDBC, ODBC,,, Shared connection state, AdbcDatabase, DB, —, —, —,
..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="How Drivers and
the Driver Manager Work Together" href="how_manager.html" /><link rel="prev"
title="Versioning and Compatibility" href="versioning.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Comparison with Other APIs - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/format/how_manager.html b/main/format/how_manager.html
index 177e15fed..a010d476c 100644
--- a/main/format/how_manager.html
+++ b/main/format/how_manager.html
@@ -15,7 +15,7 @@
<meta name="description" content="When an application calls a function like
AdbcStatementExecuteQuery(), how does it “know” what function in which driver
to actually call? This can happen in a few ways. In the simplest case, the
ap..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Related Work"
href="related_work.html" /><link rel="prev" title="Comparison with Other APIs"
href="comparison.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>How Drivers and the Driver Manager Work Together - ADBC 17
(dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/format/related_work.html b/main/format/related_work.html
index dfd4a2695..19f98ac8f 100644
--- a/main/format/related_work.html
+++ b/main/format/related_work.html
@@ -15,7 +15,7 @@
<meta name="description" content="In the initial proposal, a survey of
existing solutions and systems was included, which is partially reproduced
below for context, though note the descriptions are only kept up-to-date on a
best-ef..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Contributing"
href="../development/contributing.html" /><link rel="prev" title="How Drivers
and the Driver Manager Work Together" href="how_manager.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Related Work - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/format/specification.html b/main/format/specification.html
index 23f65316d..13818c305 100644
--- a/main/format/specification.html
+++ b/main/format/specification.html
@@ -15,7 +15,7 @@
<meta name="description" content="This document summarizes the general
featureset. For C/C++ details, see adbc.h., For Go details, see the source.,
For Java details, see the source, particularly the package
org.apache.arrow.adbc.co..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Versioning and
Compatibility" href="versioning.html" /><link rel="prev" title="Writing New
Drivers" href="../driver/authoring.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>ADBC API Standard - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/format/versioning.html b/main/format/versioning.html
index 27e746f7f..9f812f5cd 100644
--- a/main/format/versioning.html
+++ b/main/format/versioning.html
@@ -15,7 +15,7 @@
<meta name="description" content="The goal is to be ABI-compatible across
releases. Hence, a few choices were made: Most structures do not contain
embedded fields or functions, but instead use free functions, making it easy to
add ..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Comparison with
Other APIs" href="comparison.html" /><link rel="prev" title="ADBC API Standard"
href="specification.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Versioning and Compatibility - ADBC 17 (dev)
documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/genindex.html b/main/genindex.html
index 0461cc375..af16b8fec 100644
--- a/main/genindex.html
+++ b/main/genindex.html
@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index"
title="Index" href="#" /><link rel="search" title="Search" href="search.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 --><title>Index -
ADBC 17 (dev) documentation</title>
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 --><title>Index -
ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=8f2a1f02"
/>
<link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=354aac6f" />
<link rel="stylesheet" type="text/css"
href="_static/copybutton.css?v=76b2166b" />
diff --git a/main/glossary.html b/main/glossary.html
index 4f329044a..4e29a0de5 100644
--- a/main/glossary.html
+++ b/main/glossary.html
@@ -15,7 +15,7 @@
<meta name="description" content="Arrow Flight SQL, A wire protocol for data
systems that uses Apache Arrow. See the specification.,, client API, The API
that an application uses to interact with a database. May abstract over the
u..." />
<link rel="index" title="Index" href="genindex.html" /><link rel="search"
title="Search" href="search.html" /><link rel="prev" title="Frequently Asked
Questions (FAQ)" href="faq.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Glossary - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=354aac6f" />
diff --git a/main/index.html b/main/index.html
index 1b5045c9a..d0004ee92 100644
--- a/main/index.html
+++ b/main/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="ADBC: Arrow Database Connectivity
Cross-language, Arrow-native database access. ADBC is a set of APIs and
libraries for Arrow-native access to databases. Execute SQL and Substrait
queries, query da..." />
<link rel="index" title="Index" href="genindex.html" /><link rel="search"
title="Search" href="search.html" /><link rel="next" title="Frequently Asked
Questions (FAQ)" href="faq.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=354aac6f" />
diff --git a/main/java/driver_manager.html b/main/java/driver_manager.html
index fd988a02b..832ea744e 100644
--- a/main/java/driver_manager.html
+++ b/main/java/driver_manager.html
@@ -15,7 +15,7 @@
<meta name="description" content="Installation: To include the ADBC Driver
Manager in your Maven project, add the following dependency: API Reference: See
the API reference." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Java API
Reference" href="api/index.html" /><link rel="prev" title="Quickstart"
href="quickstart.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Driver Manager - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/java/index.html b/main/java/index.html
index eae540b0d..72e1462ad 100644
--- a/main/java/index.html
+++ b/main/java/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="Quickstart- Installation, JDBC-style API.,
Driver Manager- Installation, API Reference., Java API Reference." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Quickstart"
href="quickstart.html" /><link rel="prev" title="C#/.NET"
href="../csharp/index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Java - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/java/quickstart.html b/main/java/quickstart.html
index 7cb66e1de..39033b856 100644
--- a/main/java/quickstart.html
+++ b/main/java/quickstart.html
@@ -15,7 +15,7 @@
<meta name="description" content="Here we’ll briefly tour basic features of
ADBC with the PostgreSQL driver for Java. Installation: To include ADBC in your
Maven project, add the following dependency: For the examples in this secti..."
/>
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Driver Manager"
href="driver_manager.html" /><link rel="prev" title="Java" href="index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Quickstart - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/py-modindex.html b/main/py-modindex.html
index 57a979d97..3f772c550 100644
--- a/main/py-modindex.html
+++ b/main/py-modindex.html
@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index"
title="Index" href="genindex.html" /><link rel="search" title="Search"
href="search.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 --><title>Python
Module Index - ADBC 17 (dev) documentation</title>
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 --><title>Python
Module Index - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=8f2a1f02"
/>
<link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=354aac6f" />
<link rel="stylesheet" type="text/css"
href="_static/copybutton.css?v=76b2166b" />
diff --git a/main/python/api/adbc_driver_flightsql.html
b/main/python/api/adbc_driver_flightsql.html
index faf0db8f5..fd7880281 100644
--- a/main/python/api/adbc_driver_flightsql.html
+++ b/main/python/api/adbc_driver_flightsql.html
@@ -15,7 +15,7 @@
<meta name="description" content="Low-Level API: Low-level ADBC bindings for
the Flight SQL driver. DBAPI 2.0 API: DBAPI 2.0-compatible facade for the ADBC
Arrow Flight SQL driver." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="adbc_driver_postgresql" href="adbc_driver_postgresql.html" /><link
rel="prev" title="adbc_driver_manager" href="adbc_driver_manager.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>adbc_driver_flightsql - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/api/adbc_driver_manager.html
b/main/python/api/adbc_driver_manager.html
index 02012a1e5..78a0bc82e 100644
--- a/main/python/api/adbc_driver_manager.html
+++ b/main/python/api/adbc_driver_manager.html
@@ -15,7 +15,7 @@
<meta name="description" content="Low-Level API: Low-level ADBC bindings for
Python. The root module provides a fairly direct, 1:1 mapping to the C API
definitions in Python. For a higher-level interface, use
adbc_driver_manager.db..." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="adbc_driver_flightsql" href="adbc_driver_flightsql.html" /><link
rel="prev" title="Python API Reference" href="index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>adbc_driver_manager - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/api/adbc_driver_postgresql.html
b/main/python/api/adbc_driver_postgresql.html
index 8e4c3e068..357ed6201 100644
--- a/main/python/api/adbc_driver_postgresql.html
+++ b/main/python/api/adbc_driver_postgresql.html
@@ -15,7 +15,7 @@
<meta name="description" content="Low-Level API: DBAPI 2.0 API: DBAPI
2.0-compatible facade for the ADBC libpq driver." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="adbc_driver_sqlite" href="adbc_driver_sqlite.html" /><link rel="prev"
title="adbc_driver_flightsql" href="adbc_driver_flightsql.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>adbc_driver_postgresql - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/api/adbc_driver_sqlite.html
b/main/python/api/adbc_driver_sqlite.html
index fbf1a845f..2894d7d7c 100644
--- a/main/python/api/adbc_driver_sqlite.html
+++ b/main/python/api/adbc_driver_sqlite.html
@@ -15,7 +15,7 @@
<meta name="description" content="Low-Level API: Low-level ADBC bindings for
the SQLite driver. DBAPI 2.0 API: DBAPI 2.0-compatible facade for the ADBC
SQLite driver." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="Python Cookbook" href="../recipe/index.html" /><link rel="prev"
title="adbc_driver_postgresql" href="adbc_driver_postgresql.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>adbc_driver_sqlite - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/api/index.html b/main/python/api/index.html
index 36e745022..885784cdb 100644
--- a/main/python/api/index.html
+++ b/main/python/api/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="adbc_driver_manager, adbc_driver_flightsql,
adbc_driver_postgresql, adbc_driver_sqlite." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="adbc_driver_manager" href="adbc_driver_manager.html" /><link rel="prev"
title="Driver Manager" href="../driver_manager.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Python API Reference - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/driver_manager.html b/main/python/driver_manager.html
index 45e99b83d..e0473cf39 100644
--- a/main/python/driver_manager.html
+++ b/main/python/driver_manager.html
@@ -15,7 +15,7 @@
<meta name="description" content="The driver manager is a library that
provides bindings to the ADBC C API. It delegates to dynamically-loaded
drivers. This allows applications to use multiple drivers simultaneously, and
decouple t..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Python API
Reference" href="api/index.html" /><link rel="prev" title="Quickstart"
href="quickstart.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Driver Manager - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/index.html b/main/python/index.html
index 2fa33cb95..f0866c8ee 100644
--- a/main/python/index.html
+++ b/main/python/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="Quickstart- Installation, DBAPI (PEP
249)-style API., Driver Manager- Installation, Usage, API Reference., Python
API Reference- adbc_driver_manager, adbc_driver_flightsql,
adbc_driver_postgresql, ..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Quickstart"
href="quickstart.html" /><link rel="prev" title="Java API Reference"
href="../java/api/index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Python - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/quickstart.html b/main/python/quickstart.html
index 6b98f04db..29582a1a9 100644
--- a/main/python/quickstart.html
+++ b/main/python/quickstart.html
@@ -15,7 +15,7 @@
<meta name="description" content="Here we’ll briefly tour basic features of
ADBC with the SQLite driver. Installation: DBAPI (PEP 249)-style API: If
PyArrow is installed, ADBC provides a high-level API in the style of the DBAPI
sta..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Driver Manager"
href="driver_manager.html" /><link rel="prev" title="Python" href="index.html"
/>
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Quickstart - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/recipe/driver_manager.html
b/main/python/recipe/driver_manager.html
index 6c933b600..b443c0d36 100644
--- a/main/python/recipe/driver_manager.html
+++ b/main/python/recipe/driver_manager.html
@@ -15,7 +15,7 @@
<meta name="description" content="These recipes show general functionality of
the ADBC Python libraries that isn’t necessarily specific to any one driver.
Direct use of the low-level bindings: Recipe source:
driver_manager_lowlevel..." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="Flight SQL Recipes" href="flight_sql.html" /><link rel="prev"
title="Python Cookbook" href="index.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>DBAPI/Driver Manager Recipes - ADBC 17 (dev)
documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/recipe/flight_sql.html
b/main/python/recipe/flight_sql.html
index 6d80a4a1b..776184daa 100644
--- a/main/python/recipe/flight_sql.html
+++ b/main/python/recipe/flight_sql.html
@@ -15,7 +15,7 @@
<meta name="description" content="Some of these recipes are written againt a
demo Flight SQL service backed by SQLite. You can run it yourself as follows:
Other recipes work using the OSS version of Dremio: If you have the ADBC
rep..." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="PostgreSQL Recipes" href="postgresql.html" /><link rel="prev"
title="DBAPI/Driver Manager Recipes" href="driver_manager.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Flight SQL Recipes - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/recipe/index.html b/main/python/recipe/index.html
index 0e36342ce..f699b8c4b 100644
--- a/main/python/recipe/index.html
+++ b/main/python/recipe/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="The cookbook provides task-oriented example
code for using ADBC in Python. DBAPI/Driver Manager Recipes- Direct use of the
low-level bindings, Manually preparing a statement., Flight SQL Recipes- C..."
/>
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="DBAPI/Driver Manager Recipes" href="driver_manager.html" /><link
rel="prev" title="adbc_driver_sqlite" href="../api/adbc_driver_sqlite.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>Python Cookbook - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/recipe/postgresql.html
b/main/python/recipe/postgresql.html
index a93b64174..6de59f7be 100644
--- a/main/python/recipe/postgresql.html
+++ b/main/python/recipe/postgresql.html
@@ -15,7 +15,7 @@
<meta name="description" content="Authenticate with a username and password:
Recipe source: postgresql_authenticate.py To connect to a PostgreSQL database,
the username and password must be provided in the URI. For example, See the..."
/>
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="SQLite Recipes" href="sqlite.html" /><link rel="prev" title="Flight SQL
Recipes" href="flight_sql.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>PostgreSQL Recipes - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/python/recipe/sqlite.html b/main/python/recipe/sqlite.html
index f95ef458c..576ae0fd8 100644
--- a/main/python/recipe/sqlite.html
+++ b/main/python/recipe/sqlite.html
@@ -15,7 +15,7 @@
<meta name="description" content="Change the batch size of the result set:
Recipe source: sqlite_batch_rows.py The ADBC SQLite driver allows control over
the size of batches in result sets. Because the driver performs type
inferenc..." />
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="R" href="../../r/index.html" /><link rel="prev" title="PostgreSQL
Recipes" href="postgresql.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>SQLite Recipes - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index 545b3ec45..a3f6d182f 100644
--- a/main/r/adbcbigquery/pkgdown.yml
+++ b/main/r/adbcbigquery/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.6.3
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
-last_built: 2025-02-27T20:51Z
+last_built: 2025-03-03T00:54Z
urls:
reference: https://arrow.apache.org/adbc/current/r/adbcbigquery/reference
article: https://arrow.apache.org/adbc/current/r/adbcbigquery/articles
diff --git a/main/r/adbcdrivermanager/pkgdown.yml
b/main/r/adbcdrivermanager/pkgdown.yml
index 4caafe4e4..89b467664 100644
--- a/main/r/adbcdrivermanager/pkgdown.yml
+++ b/main/r/adbcdrivermanager/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.6.3
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
-last_built: 2025-02-27T20:51Z
+last_built: 2025-03-03T00:54Z
urls:
reference:
https://arrow.apache.org/adbc/current/r/adbcdrivermanager/reference
article: https://arrow.apache.org/adbc/current/r/adbcdrivermanager/articles
diff --git a/main/r/adbcdrivermanager/reference/adbc_connection_init.html
b/main/r/adbcdrivermanager/reference/adbc_connection_init.html
index 20baca322..2e2c764c1 100644
--- a/main/r/adbcdrivermanager/reference/adbc_connection_init.html
+++ b/main/r/adbcdrivermanager/reference/adbc_connection_init.html
@@ -105,9 +105,9 @@ finer-grained control over behaviour at the R
level.</p></dd>
<h2 id="ref-examples">Examples<a class="anchor" aria-label="anchor"
href="#ref-examples"></a></h2>
<div class="sourceCode"><pre class="sourceCode r"><code><span
class="r-in"><span><span class="va">db</span> <span class="op"><-</span>
<span class="fu"><a
href="adbc_database_init.html">adbc_database_init</a></span><span
class="op">(</span><span class="fu"><a
href="adbc_driver_void.html">adbc_driver_void</a></span><span
class="op">(</span><span class="op">)</span><span
class="op">)</span></span></span>
<span class="r-in"><span><span class="fu">adbc_connection_init</span><span
class="op">(</span><span class="va">db</span><span
class="op">)</span></span></span>
-<span class="r-out co"><span class="r-pr">#></span> <adbc_connection at
0x564741297bd0> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_connection at
0x5597d78649f0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#></span> $
database:<adbc_database at 0x564740c8aac0> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
database:<adbc_database at 0x5597d78fefa0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
<span class="r-out co"><span class="r-pr">#></span> ..$
driver:<adbc_driver_void> List of 2</span>
<span class="r-out co"><span class="r-pr">#></span> .. ..$
driver_init_func:Class 'adbc_driver_init_func' <externalptr> </span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_database_init.html
b/main/r/adbcdrivermanager/reference/adbc_database_init.html
index f3225f1f9..2fdda06ae 100644
--- a/main/r/adbcdrivermanager/reference/adbc_database_init.html
+++ b/main/r/adbcdrivermanager/reference/adbc_database_init.html
@@ -104,7 +104,7 @@ finer-grained control over behaviour at the R
level.</p></dd>
<div class="section level2">
<h2 id="ref-examples">Examples<a class="anchor" aria-label="anchor"
href="#ref-examples"></a></h2>
<div class="sourceCode"><pre class="sourceCode r"><code><span
class="r-in"><span><span class="fu">adbc_database_init</span><span
class="op">(</span><span class="fu"><a
href="adbc_driver_void.html">adbc_driver_void</a></span><span
class="op">(</span><span class="op">)</span><span
class="op">)</span></span></span>
-<span class="r-out co"><span class="r-pr">#></span> <adbc_database at
0x564740ab3e50> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_database at
0x5597d8040ed0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
<span class="r-out co"><span class="r-pr">#></span> $
driver:<adbc_driver_void> List of 2</span>
<span class="r-out co"><span class="r-pr">#></span> ..$
driver_init_func:Class 'adbc_driver_init_func' <externalptr> </span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_statement_init.html
b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
index 77935746f..ec8c1f1c5 100644
--- a/main/r/adbcdrivermanager/reference/adbc_statement_init.html
+++ b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
@@ -106,11 +106,11 @@ finer-grained control over behaviour at the R
level.</p></dd>
<div class="sourceCode"><pre class="sourceCode r"><code><span
class="r-in"><span><span class="va">db</span> <span class="op"><-</span>
<span class="fu"><a
href="adbc_database_init.html">adbc_database_init</a></span><span
class="op">(</span><span class="fu"><a
href="adbc_driver_void.html">adbc_driver_void</a></span><span
class="op">(</span><span class="op">)</span><span
class="op">)</span></span></span>
<span class="r-in"><span><span class="va">con</span> <span
class="op"><-</span> <span class="fu"><a
href="adbc_connection_init.html">adbc_connection_init</a></span><span
class="op">(</span><span class="va">db</span><span
class="op">)</span></span></span>
<span class="r-in"><span><span class="fu">adbc_statement_init</span><span
class="op">(</span><span class="va">con</span><span
class="op">)</span></span></span>
-<span class="r-out co"><span class="r-pr">#></span> <adbc_statement at
0x56473fe94fd0> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_statement at
0x5597d7fd2e00> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#></span> $
connection:<adbc_connection at 0x5647402b7860> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
connection:<adbc_connection at 0x5597d29bf3f0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#></span> ..$
database:<adbc_database at 0x564740f63290> </span>
+<span class="r-out co"><span class="r-pr">#></span> ..$
database:<adbc_database at 0x5597d7ba75a0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
<span class="r-out co"><span class="r-pr">#></span> .. ..$
driver:<adbc_driver_void> List of 2</span>
<span class="r-out co"><span class="r-pr">#></span> .. .. ..$
driver_init_func:Class 'adbc_driver_init_func' <externalptr> </span>
diff --git a/main/r/adbcdrivermanager/search.json
b/main/r/adbcdrivermanager/search.json
index 3f0557b6f..f8d473b74 100644
--- a/main/r/adbcdrivermanager/search.json
+++ b/main/r/adbcdrivermanager/search.json
@@ -1 +1 @@
-[{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"Apache
License","title":"Apache License","text":"Version 2.0, January 2004
<http://www.apache.org/licenses/>","code":""},{"path":[]},{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":"id_1-definitions","dir":"","previous_headings":"Terms
and Conditions for use, reproduction, and distribution","what":"1.
Definitions","title [...]
+[{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"Apache
License","title":"Apache License","text":"Version 2.0, January 2004
<http://www.apache.org/licenses/>","code":""},{"path":[]},{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":"id_1-definitions","dir":"","previous_headings":"Terms
and Conditions for use, reproduction, and distribution","what":"1.
Definitions","title [...]
diff --git a/main/r/adbcflightsql/pkgdown.yml b/main/r/adbcflightsql/pkgdown.yml
index 31afe1513..b7b9bee8b 100644
--- a/main/r/adbcflightsql/pkgdown.yml
+++ b/main/r/adbcflightsql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.6.3
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
-last_built: 2025-02-27T20:51Z
+last_built: 2025-03-03T00:54Z
urls:
reference: https://arrow.apache.org/adbc/current/r/adbcflightsql/reference
article: https://arrow.apache.org/adbc/current/r/adbcflightsql/articles
diff --git a/main/r/adbcpostgresql/pkgdown.yml
b/main/r/adbcpostgresql/pkgdown.yml
index 44aeecf43..556a8be5e 100644
--- a/main/r/adbcpostgresql/pkgdown.yml
+++ b/main/r/adbcpostgresql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.6.3
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
-last_built: 2025-02-27T20:50Z
+last_built: 2025-03-03T00:54Z
urls:
reference: https://arrow.apache.org/adbc/current/r/adbcpostgresql/reference
article: https://arrow.apache.org/adbc/current/r/adbcpostgresql/articles
diff --git a/main/r/adbcsnowflake/pkgdown.yml b/main/r/adbcsnowflake/pkgdown.yml
index e6a34c75f..038fad4c4 100644
--- a/main/r/adbcsnowflake/pkgdown.yml
+++ b/main/r/adbcsnowflake/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.6.3
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
-last_built: 2025-02-27T20:51Z
+last_built: 2025-03-03T00:54Z
urls:
reference: https://arrow.apache.org/adbc/current/r/adbcsnowflake/reference
article: https://arrow.apache.org/adbc/current/r/adbcsnowflake/articles
diff --git a/main/r/adbcsqlite/pkgdown.yml b/main/r/adbcsqlite/pkgdown.yml
index afceccebc..716a700c3 100644
--- a/main/r/adbcsqlite/pkgdown.yml
+++ b/main/r/adbcsqlite/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.6.3
pkgdown: 2.1.1
pkgdown_sha: ~
articles: {}
-last_built: 2025-02-27T20:50Z
+last_built: 2025-03-03T00:54Z
urls:
reference: https://arrow.apache.org/adbc/current/r/adbcsqlite/reference
article: https://arrow.apache.org/adbc/current/r/adbcsqlite/articles
diff --git a/main/r/index.html b/main/r/index.html
index 30290ae6f..6daa5094e 100644
--- a/main/r/index.html
+++ b/main/r/index.html
@@ -15,7 +15,7 @@
<meta name="description" content="ADBC in R is implemented as a suite of R
packages. Most users will interact with ADBC via the adbcdrivermanager package
and use drivers that are also distributed as R packages. In addition to the
l..." />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search"
title="Search" href="../search.html" /><link rel="next" title="Installation"
href="../driver/installation.html" /><link rel="prev" title="SQLite Recipes"
href="../python/recipe/sqlite.html" />
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<title>R - ADBC 17 (dev) documentation</title>
<link rel="stylesheet" type="text/css"
href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="../_static/styles/furo.css?v=354aac6f" />
diff --git a/main/search.html b/main/search.html
index 13465b0df..2bb0d9fb6 100644
--- a/main/search.html
+++ b/main/search.html
@@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index"
title="Index" href="genindex.html" /><link rel="search" title="Search" href="#"
/>
- <!-- Generated with Sphinx 8.2.1 and Furo 2024.08.06 -->
+ <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
<meta name="robots" content="noindex" />
<title>Search - ADBC 17 (dev) documentation</title><link rel="stylesheet"
type="text/css" href="_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css"
href="_static/styles/furo.css?v=354aac6f" />