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 3ebf8eb82 publish documentation
3ebf8eb82 is described below

commit 3ebf8eb820f2e068bdd0be7fa231b83fa32c59b3
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Sep 18 02:55:51 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/cpp/static_linking.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/driver_manifests.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_bigquery.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_snowflake.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/rust/driver_manager.html                                | 2 +-
 main/rust/index.html                                         | 2 +-
 main/rust/quickstart.html                                    | 2 +-
 main/search.html                                             | 2 +-
 64 files changed, 67 insertions(+), 67 deletions(-)

diff --git a/main/cpp/concurrency.html b/main/cpp/concurrency.html
index c9e859680..3fc12ee73 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Concurrency and Thread Safety - ADBC 21 (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 0a909777a..d8a7d1744 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="Static Linking" 
href="static_linking.html" /><link rel="prev" title="Concurrency and Thread 
Safety" href="concurrency.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Driver Example - ADBC 21 (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 a8853bca8..42978d716 100644
--- a/main/cpp/driver_manager.html
+++ b/main/cpp/driver_manager.html
@@ -15,7 +15,7 @@
 <meta name="description" content="This document describes the installation and 
usage of the C++ driver manager. Installation: Install the appropriate driver 
package. You can use conda-forge, apt or dnf. conda-forge: mamba install a..." 
/>
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Driver Manager - ADBC 21 (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 211ba6c7e..ed6fd6114 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>C and C++ - ADBC 21 (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 50bb90978..c7af47db5 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Quickstart - ADBC 21 (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/static_linking.html b/main/cpp/static_linking.html
index 8c3a65d82..a2fcae2ba 100644
--- a/main/cpp/static_linking.html
+++ b/main/cpp/static_linking.html
@@ -15,7 +15,7 @@
 <meta name="description" content="To statically link and use multiple drivers, 
the following limitations hold: You must build with these CMake options 
1:--DADBC_BUILD_STATIC=ON,-DADBC_DEFINE_COMMON_ENTRYPOINTS=OFF,-DADBC_WITH_VENDO..."
 />
 <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="Driver Example" 
href="driver_example.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Static Linking - ADBC 21 (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 6a2f70724..591155d12 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>C#/.NET - ADBC 21 (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 12b4fa273..bc077ff0e 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Contributing - ADBC 21 (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 637f2cc03..c03fa37c8 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Nightly Packages - ADBC 21 (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 255a164a7..53287553e 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Release Management Guide - ADBC 21 (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 9122acbfa..a72c93641 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Versioning - ADBC 21 (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 88e9b0688..dd7279379 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Writing New Drivers - ADBC 21 (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 f17cfb022..ff733844a 100644
--- a/main/driver/duckdb.html
+++ b/main/driver/duckdb.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Language: C/C++ Status: Stable DuckDB 
provides ADBC support since version 0.8.0. Installation: See the DuckDB 
documentation. Usage: ADBC support in DuckDB requires the driver manager. C++ 
See the D..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>DuckDB Support - ADBC 21 (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 980c5c547..1081a4ee6 100644
--- a/main/driver/flight_sql.html
+++ b/main/driver/flight_sql.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Language: Go Status: Stable The Flight SQL 
Driver provides access to any database implementing a Arrow Flight SQL 
compatible endpoint. Installation: C/C++ Install libadbc-driver-flightsql from 
cond..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Flight SQL Driver - ADBC 21 (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 722f44084..a73ff7976 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="Driver 
Manager" href="../rust/driver_manager.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Installation - ADBC 21 (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 57d4841a5..ff209bcb8 100644
--- a/main/driver/jdbc.html
+++ b/main/driver/jdbc.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Language: Java Status: Beta The JDBC Adapter 
provides access to any database with a JDBC driver. Installation: Java Install 
org.apache.arrow.adbc:adbc-driver-jdbc from Maven: Usage: To connect to a..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>JDBC Adapter - ADBC 21 (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 7fabcb946..a36118581 100644
--- a/main/driver/postgresql.html
+++ b/main/driver/postgresql.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Language: C/C++ Status: Stable The 
PostgreSQL driver provides access to any database that supports the PostgreSQL 
wire format. It wraps libpq, the client library for PostgreSQL. The project 
owes cr..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>PostgreSQL Driver - ADBC 21 (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 57a3b6fc2..59f234fb8 100644
--- a/main/driver/snowflake.html
+++ b/main/driver/snowflake.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Language: Go Status: Stable The Snowflake 
Driver provides access to Snowflake Database Warehouses. Installation: C# 
Install Apache.Arrow.Adbc.Drivers.Interop.Snowflake from NuGet: C/C++ Install 
lib..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Snowflake Driver - ADBC 21 (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 ab83119d9..b4276f205 100644
--- a/main/driver/sqlite.html
+++ b/main/driver/sqlite.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Language: C/C++ Status: Stable The SQLite 
driver provides access to SQLite databases. This driver is essentially a 
“reference” driver that was used during ADBC development. It generally supports 
mo..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>SQLite Driver - ADBC 21 (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 c1d003a10..0786a2875 100644
--- a/main/driver/status.html
+++ b/main/driver/status.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Driver 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 time. S..." 
/>
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Driver Implementation Status - ADBC 21 (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 e2c89ce43..98a8ba07a 100644
--- a/main/faq.html
+++ b/main/faq.html
@@ -15,7 +15,7 @@
 <meta name="description" content="What exactly is ADBC?: At a high level, ADBC 
is the standard for Arrow-native access to databases. At a lower level, ADBC is 
two separate but related things: An abstract API for working with databa..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Frequently Asked Questions (FAQ) - ADBC 21 (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 12f9700f7..77a289f67 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Comparison with Other APIs - ADBC 21 (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/driver_manifests.html 
b/main/format/driver_manifests.html
index 1cdd9b626..282cd59a9 100644
--- a/main/format/driver_manifests.html
+++ b/main/format/driver_manifests.html
@@ -15,7 +15,7 @@
 <meta name="description" content="There are two ways to load a driver with the 
driver manager: Directly specifying the dynamic library to load, Referring to a 
driver manifest file which contains metadata along with the location of ..." />
 <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="How Drivers and the Driver 
Manager Work Together" href="how_manager.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>ADBC Driver Manager and Manifests - ADBC 21 (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 39eb21338..76229224c 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="ADBC Driver 
Manager and Manifests" href="driver_manifests.html" /><link rel="prev" 
title="Comparison with Other APIs" href="comparison.html" />
 
-    <!-- Generated with Sphinx 8.3.0 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 21 
(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 256bb7923..4409777eb 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="ADBC Driver 
Manager and Manifests" href="driver_manifests.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Related Work - ADBC 21 (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 d8ad4eb37..57fea01a3 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 of the ADBC API and should be considered informative only. For 
authoritative definitions of the ADBC API, refer to the following sources: For 
C/C++ d..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>ADBC API Standard - ADBC 21 (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 b611fcd03..edfc08c43 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Versioning and Compatibility - ADBC 21 (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 3807cd7e8..350c1e43d 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.3.0 and Furo 2024.08.06 --><title>Index - 
ADBC 21 (dev) documentation</title>
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 --><title>Index - 
ADBC 21 (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 e924f20c6..c9f67aeca 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Glossary - ADBC 21 (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 3206e6569..b285304d4 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>ADBC 21 (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 0fa840d22..4cd972460 100644
--- a/main/java/driver_manager.html
+++ b/main/java/driver_manager.html
@@ -15,7 +15,7 @@
 <meta name="description" content="This document describes the installation of 
the Java driver manager. Installation: To include the ADBC Driver Manager in 
your Maven project, add the following dependency: API Reference: See the 
API..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Driver Manager - ADBC 21 (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 36838cff2..8537d5050 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Java - ADBC 21 (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 07472e2c0..309077231 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Quickstart - ADBC 21 (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 5d7559e98..f96463464 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.3.0 and Furo 2024.08.06 --><title>Python 
Module Index - ADBC 21 (dev) documentation</title>
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 --><title>Python 
Module Index - ADBC 21 (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_bigquery.html 
b/main/python/api/adbc_driver_bigquery.html
index 15b025506..edc6da137 100644
--- a/main/python/api/adbc_driver_bigquery.html
+++ b/main/python/api/adbc_driver_bigquery.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Low-Level API: Low-level ADBC bindings for 
the BigQuery driver. DBAPI 2.0 API: DBAPI 2.0-compatible facade for the ADBC 
BigQuery driver." />
 <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="adbc_driver_manager" href="adbc_driver_manager.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>adbc_driver_bigquery - ADBC 21 (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_flightsql.html 
b/main/python/api/adbc_driver_flightsql.html
index e844bddbe..9eb3a13bb 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_bigquery" href="adbc_driver_bigquery.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>adbc_driver_flightsql - ADBC 21 (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 72b64647e..781f68b43 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_bigquery" href="adbc_driver_bigquery.html" /><link 
rel="prev" title="Python API Reference" href="index.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>adbc_driver_manager - ADBC 21 (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 fa9789d9e..cc14b7784 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_snowflake" href="adbc_driver_snowflake.html" /><link 
rel="prev" title="adbc_driver_flightsql" href="adbc_driver_flightsql.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>adbc_driver_postgresql - ADBC 21 (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_snowflake.html 
b/main/python/api/adbc_driver_snowflake.html
index fbba2b2bc..125492101 100644
--- a/main/python/api/adbc_driver_snowflake.html
+++ b/main/python/api/adbc_driver_snowflake.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Low-Level API: Low-level ADBC bindings for 
the Snowflake driver. DBAPI 2.0 API: DBAPI 2.0-compatible facade for the ADBC 
Snowflake 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_postgresql" href="adbc_driver_postgresql.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>adbc_driver_snowflake - ADBC 21 (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 896e5e6c0..22184646a 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_snowflake" href="adbc_driver_snowflake.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>adbc_driver_sqlite - ADBC 21 (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 fd0134c12..b66d99c6d 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_bigquery, 
adbc_driver_flightsql, adbc_driver_postgresql, adbc_driver_snowflake, 
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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Python API Reference - ADBC 21 (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 9f536eade..69aa4b196 100644
--- a/main/python/driver_manager.html
+++ b/main/python/driver_manager.html
@@ -15,7 +15,7 @@
 <meta name="description" content="The adbc_driver_manager package provides a 
driver manager interface for Python. The package provides two APIs: Low-level 
bindings that are essentially the same as the C API., If PyArrow or Polars 
a..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Driver Manager - ADBC 21 (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 dc8a98fd0..e5e134998 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_bigquery, 
adbc_driver_flightsql, ad..." />
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Python - ADBC 21 (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 f6cdcb9b5..4920d8b11 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 either 
PyArrow or Polars are installed, ADBC provides a high-level API in the styl..." 
/>
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Quickstart - ADBC 21 (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 256ad32f7..0f3eb3054 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>DBAPI/Driver Manager Recipes - ADBC 21 (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 524797d07..58c9bddf6 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 against 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 re..." 
/>
 <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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Flight SQL Recipes - ADBC 21 (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 07046c029..aec542fca 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Python Cookbook - ADBC 21 (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 7363acc44..74fb4753b 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>PostgreSQL Recipes - ADBC 21 (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 39bccd04c..c44699224 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>SQLite Recipes - ADBC 21 (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 4aef8c7b9..3e0a2c93a 100644
--- a/main/r/adbcbigquery/pkgdown.yml
+++ b/main/r/adbcbigquery/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.8'
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-09-16T16:54Z
+last_built: 2025-09-18T02: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 601a51a38..34c5d9e15 100644
--- a/main/r/adbcdrivermanager/pkgdown.yml
+++ b/main/r/adbcdrivermanager/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.8'
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-09-16T16:54Z
+last_built: 2025-09-18T02:55Z
 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 4bed02c57..f8d591158 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">&lt;-</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">#&gt;</span> &lt;adbc_connection at 
0x55f31bd4d600&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x5606f9e30170&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x55f318b2dcb0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x5606f8183460&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
driver:&lt;adbc_driver_void&gt; List of 4</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   .. ..$ load_flags     
 : int 15</span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_database_init.html 
b/main/r/adbcdrivermanager/reference/adbc_database_init.html
index aff5aafb9..8489d00c4 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">#&gt;</span> &lt;adbc_database at 
0x55f3176f61e0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x5606fbfc6950&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
driver:&lt;adbc_driver_void&gt; List of 4</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ load_flags      : 
int 15</span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_statement_init.html 
b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
index 1a49b6e17..a1c8ab0e3 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">&lt;-</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">&lt;-</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">#&gt;</span> &lt;adbc_statement at 
0x55f31b2aa310&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x5606fbd2c3d0&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x55f31941f4a0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x5606fc653db0&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x55f31a944230&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x5606fb77cfe0&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   .. ..$ 
driver:&lt;adbc_driver_void&gt; List of 4</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   .. .. ..$ load_flags  
    : int 15</span>
diff --git a/main/r/adbcdrivermanager/search.json 
b/main/r/adbcdrivermanager/search.json
index 264d0d78d..8f67e6c4b 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 3d2ae6193..121f3c051 100644
--- a/main/r/adbcflightsql/pkgdown.yml
+++ b/main/r/adbcflightsql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.8'
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-09-16T16:54Z
+last_built: 2025-09-18T02:55Z
 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 bb3f9ad4e..218e95238 100644
--- a/main/r/adbcpostgresql/pkgdown.yml
+++ b/main/r/adbcpostgresql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.8'
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-09-16T16:54Z
+last_built: 2025-09-18T02:55Z
 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 25ec63cdd..aca10d6d4 100644
--- a/main/r/adbcsnowflake/pkgdown.yml
+++ b/main/r/adbcsnowflake/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.8'
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-09-16T16:54Z
+last_built: 2025-09-18T02:55Z
 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 259957bd3..a9d7d8af4 100644
--- a/main/r/adbcsqlite/pkgdown.yml
+++ b/main/r/adbcsqlite/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.8'
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-09-16T16:54Z
+last_built: 2025-09-18T02:55Z
 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 f52f6c4bf..dde1d7e21 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="Rust" 
href="../rust/index.html" /><link rel="prev" title="SQLite Recipes" 
href="../python/recipe/sqlite.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>R - ADBC 21 (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/rust/driver_manager.html b/main/rust/driver_manager.html
index d8ceec369..124225e47 100644
--- a/main/rust/driver_manager.html
+++ b/main/rust/driver_manager.html
@@ -15,7 +15,7 @@
 <meta name="description" content="This document describes the installation and 
usage of the Rust driver manager which is available in the adbc_driver_manager 
crate. Installation: Usage: API Reference: See the API reference: Module ..." />
 <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="Quickstart" 
href="quickstart.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Driver Manager - ADBC 21 (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/rust/index.html b/main/rust/index.html
index 9d4c57c86..5e68db13e 100644
--- a/main/rust/index.html
+++ b/main/rust/index.html
@@ -15,7 +15,7 @@
 <meta name="description" content="The ADBC Rust library is a standalone 
implementation of the ADBC APIs (like C/C++, C#, and Go). The primary crate is 
adbc_core. Quickstart- Installation, Loading DataFusion, Running Queries., 
Drive..." />
 <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="R" href="../r/index.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Rust - ADBC 21 (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/rust/quickstart.html b/main/rust/quickstart.html
index 80650f6bd..8e7407a16 100644
--- a/main/rust/quickstart.html
+++ b/main/rust/quickstart.html
@@ -15,7 +15,7 @@
 <meta name="description" content="Here we’ll briefly tour using ADBC with the 
DataFusion driver. Installation: Add a dependency on adbc_core and 
adbc_datafusion: Loading DataFusion: Create a driver instance, then a database 
handle,..." />
 <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="Rust" href="index.html" />
 
-    <!-- Generated with Sphinx 8.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
         <title>Quickstart - ADBC 21 (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 02600acd7..ccef7b9ab 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.3.0 and Furo 2024.08.06 -->
+    <!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
 <meta name="robots" content="noindex" />
 <title>Search - ADBC 21 (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" />

Reply via email to