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 3e835cf7d publish documentation
3e835cf7d is described below
commit 3e835cf7d8dc9a28f2a1ec877954bf0ab0f75a26
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Feb 17 01:33:18 2025 +0000
publish documentation
---
main/_sources/driver/sqlite.rst.txt | 2 +
main/_sources/python/recipe/index.rst.txt | 1 +
.../recipe/{index.rst.txt => sqlite.rst.txt} | 17 +--
main/cpp/concurrency.html | 1 +
main/cpp/driver_example.html | 1 +
main/cpp/driver_manager.html | 1 +
main/cpp/index.html | 1 +
main/cpp/quickstart.html | 1 +
main/csharp/index.html | 1 +
main/development/contributing.html | 1 +
main/development/nightly.html | 1 +
main/development/releasing.html | 1 +
main/development/versioning.html | 1 +
main/driver/authoring.html | 1 +
main/driver/duckdb.html | 1 +
main/driver/flight_sql.html | 1 +
main/driver/installation.html | 1 +
main/driver/jdbc.html | 1 +
main/driver/postgresql.html | 1 +
main/driver/snowflake.html | 1 +
main/driver/sqlite.html | 2 +
main/driver/status.html | 1 +
main/faq.html | 1 +
main/format/comparison.html | 1 +
main/format/how_manager.html | 1 +
main/format/related_work.html | 1 +
main/format/specification.html | 1 +
main/format/versioning.html | 1 +
main/genindex.html | 28 +++-
main/glossary.html | 1 +
main/index.html | 1 +
main/java/driver_manager.html | 1 +
main/java/index.html | 1 +
main/java/quickstart.html | 1 +
main/objects.inv | Bin 3107 -> 3118 bytes
main/py-modindex.html | 1 +
main/python/api/adbc_driver_flightsql.html | 1 +
main/python/api/adbc_driver_manager.html | 1 +
main/python/api/adbc_driver_postgresql.html | 1 +
main/python/api/adbc_driver_sqlite.html | 1 +
main/python/api/index.html | 1 +
main/python/driver_manager.html | 1 +
main/python/index.html | 2 +
main/python/quickstart.html | 1 +
main/python/recipe/driver_manager.html | 1 +
main/python/recipe/flight_sql.html | 1 +
main/python/recipe/index.html | 5 +
main/python/recipe/postgresql.html | 7 +-
main/python/recipe/{index.html => sqlite.html} | 157 ++++++++++++++-------
main/r/adbcbigquery/pkgdown.yml | 2 +-
main/r/adbcdrivermanager/pkgdown.yml | 2 +-
.../reference/adbc_connection_init.html | 4 +-
.../reference/adbc_database_init.html | 2 +-
.../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 | 7 +-
main/search.html | 1 +
main/searchindex.js | 2 +-
62 files changed, 214 insertions(+), 82 deletions(-)
diff --git a/main/_sources/driver/sqlite.rst.txt
b/main/_sources/driver/sqlite.rst.txt
index 64a845305..fc6b41384 100644
--- a/main/_sources/driver/sqlite.rst.txt
+++ b/main/_sources/driver/sqlite.rst.txt
@@ -104,6 +104,8 @@ shared across all connections.
with adbc_driver_sqlite.dbapi.connect() as conn:
pass
+ For more examples, see :doc:`../python/recipe/sqlite`.
+
.. tab-item:: R
:sync: r
diff --git a/main/_sources/python/recipe/index.rst.txt
b/main/_sources/python/recipe/index.rst.txt
index 3645e0aa6..deff425ba 100644
--- a/main/_sources/python/recipe/index.rst.txt
+++ b/main/_sources/python/recipe/index.rst.txt
@@ -28,3 +28,4 @@ Python.
driver_manager
flight_sql
postgresql
+ sqlite
diff --git a/main/_sources/python/recipe/index.rst.txt
b/main/_sources/python/recipe/sqlite.rst.txt
similarity index 80%
copy from main/_sources/python/recipe/index.rst.txt
copy to main/_sources/python/recipe/sqlite.rst.txt
index 3645e0aa6..5b9f1f795 100644
--- a/main/_sources/python/recipe/index.rst.txt
+++ b/main/_sources/python/recipe/sqlite.rst.txt
@@ -15,16 +15,11 @@
.. specific language governing permissions and limitations
.. under the License.
-===============
-Python Cookbook
-===============
+==============
+SQLite Recipes
+==============
-The cookbook provides task-oriented example code for using ADBC in
-Python.
+Change the batch size of the result set
+=======================================
-.. toctree::
- :maxdepth: 2
-
- driver_manager
- flight_sql
- postgresql
+.. recipe:: sqlite_batch_rows.py
diff --git a/main/cpp/concurrency.html b/main/cpp/concurrency.html
index dff9c9313..6c0e89928 100644
--- a/main/cpp/concurrency.html
+++ b/main/cpp/concurrency.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/cpp/driver_example.html b/main/cpp/driver_example.html
index 7f7a4ac73..9f39de33f 100644
--- a/main/cpp/driver_example.html
+++ b/main/cpp/driver_example.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/cpp/driver_manager.html b/main/cpp/driver_manager.html
index efe3849b6..513fe5fb5 100644
--- a/main/cpp/driver_manager.html
+++ b/main/cpp/driver_manager.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/cpp/index.html b/main/cpp/index.html
index 166854848..4ab74d580 100644
--- a/main/cpp/index.html
+++ b/main/cpp/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/cpp/quickstart.html b/main/cpp/quickstart.html
index 531446eb6..0e82e46db 100644
--- a/main/cpp/quickstart.html
+++ b/main/cpp/quickstart.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/csharp/index.html b/main/csharp/index.html
index 67e5557e4..c4ef799e2 100644
--- a/main/csharp/index.html
+++ b/main/csharp/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/development/contributing.html
b/main/development/contributing.html
index 3ed189ebb..5366dc7d6 100644
--- a/main/development/contributing.html
+++ b/main/development/contributing.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/development/nightly.html b/main/development/nightly.html
index d50afd5b5..5276b483e 100644
--- a/main/development/nightly.html
+++ b/main/development/nightly.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/development/releasing.html b/main/development/releasing.html
index 4e67b4103..4120f7c5a 100644
--- a/main/development/releasing.html
+++ b/main/development/releasing.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/development/versioning.html b/main/development/versioning.html
index 57737af66..be37bf1dd 100644
--- a/main/development/versioning.html
+++ b/main/development/versioning.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/authoring.html b/main/driver/authoring.html
index ca90735e9..176bc7b43 100644
--- a/main/driver/authoring.html
+++ b/main/driver/authoring.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/duckdb.html b/main/driver/duckdb.html
index 11ef86b07..a508d958a 100644
--- a/main/driver/duckdb.html
+++ b/main/driver/duckdb.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/flight_sql.html b/main/driver/flight_sql.html
index 5e897efbc..93f686905 100644
--- a/main/driver/flight_sql.html
+++ b/main/driver/flight_sql.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/installation.html b/main/driver/installation.html
index 5aad92d60..670a9117b 100644
--- a/main/driver/installation.html
+++ b/main/driver/installation.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/jdbc.html b/main/driver/jdbc.html
index ebe6f3f3b..597e2bf77 100644
--- a/main/driver/jdbc.html
+++ b/main/driver/jdbc.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/postgresql.html b/main/driver/postgresql.html
index 604506b53..36feab236 100644
--- a/main/driver/postgresql.html
+++ b/main/driver/postgresql.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/snowflake.html b/main/driver/snowflake.html
index 23c694de6..b52fdc7ce 100644
--- a/main/driver/snowflake.html
+++ b/main/driver/snowflake.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/driver/sqlite.html b/main/driver/sqlite.html
index 8f9b6d5fc..82eb6418e 100644
--- a/main/driver/sqlite.html
+++ b/main/driver/sqlite.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
@@ -462,6 +463,7 @@ Python</label><div class="sd-tab-content docutils">
<span class="k">pass</span>
</pre></div>
</div>
+<p>For more examples, see <a class="reference internal"
href="../python/recipe/sqlite.html"><span class="doc">SQLite
Recipes</span></a>.</p>
</div>
<input id="sd-tab-item-6" name="sd-tab-set-1" type="radio">
<label class="sd-tab-label" data-sync-group="tab" data-sync-id="r"
for="sd-tab-item-6">
diff --git a/main/driver/status.html b/main/driver/status.html
index baaef0449..105b78281 100644
--- a/main/driver/status.html
+++ b/main/driver/status.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/faq.html b/main/faq.html
index 69cf9bbdd..aa7082181 100644
--- a/main/faq.html
+++ b/main/faq.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/format/comparison.html b/main/format/comparison.html
index b7ce4b936..1717d5cc2 100644
--- a/main/format/comparison.html
+++ b/main/format/comparison.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/format/how_manager.html b/main/format/how_manager.html
index beb1d4932..8c5621768 100644
--- a/main/format/how_manager.html
+++ b/main/format/how_manager.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/format/related_work.html b/main/format/related_work.html
index 114658690..791e82371 100644
--- a/main/format/related_work.html
+++ b/main/format/related_work.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/format/specification.html b/main/format/specification.html
index e71c209fd..dbc221831 100644
--- a/main/format/specification.html
+++ b/main/format/specification.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/format/versioning.html b/main/format/versioning.html
index 7b4a63f27..7e786d355 100644
--- a/main/format/versioning.html
+++ b/main/format/versioning.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/genindex.html b/main/genindex.html
index 579108ba6..f79298e9e 100644
--- a/main/genindex.html
+++ b/main/genindex.html
@@ -298,6 +298,7 @@
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
@@ -544,6 +545,13 @@
<h2>B</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
+ <li>
+ batch size (recipe)
+
+ <ul>
+ <li><a href="python/recipe/sqlite.html#index-0">SQLite</a>
+</li>
+ </ul></li>
<li><a
href="python/api/adbc_driver_sqlite.html#adbc_driver_sqlite.StatementOptions.BATCH_ROWS">BATCH_ROWS
(adbc_driver_sqlite.StatementOptions attribute)</a>
</li>
<li><a
href="python/api/adbc_driver_postgresql.html#adbc_driver_postgresql.StatementOptions.BATCH_SIZE_HINT_BYTES">BATCH_SIZE_HINT_BYTES
(adbc_driver_postgresql.StatementOptions attribute)</a>
@@ -557,10 +565,10 @@
<li><a href="python/recipe/postgresql.html#index-4">PostgreSQL</a>
</li>
</ul></li>
- <li><a
href="python/api/adbc_driver_manager.html#adbc_driver_manager.AdbcStatement.bind">bind()
(adbc_driver_manager.AdbcStatement method)</a>
-</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
+ <li><a
href="python/api/adbc_driver_manager.html#adbc_driver_manager.AdbcStatement.bind">bind()
(adbc_driver_manager.AdbcStatement method)</a>
+</li>
<li><a
href="python/api/adbc_driver_manager.html#adbc_driver_manager.AdbcStatement.bind_stream">bind_stream()
(adbc_driver_manager.AdbcStatement method)</a>
</li>
<li>
@@ -1146,6 +1154,15 @@
</li>
<li><a
href="python/api/adbc_driver_manager.html#adbc_driver_manager.dbapi.Cursor.setoutputsize">setoutputsize()
(adbc_driver_manager.dbapi.Cursor method)</a>
</li>
+ <li>
+ SQLite
+
+ <ul>
+ <li><a href="python/recipe/sqlite.html#index-0">batch size
(recipe)</a>
+</li>
+ <li><a href="python/recipe/sqlite.html#index-0">type inference
(recipe)</a>
+</li>
+ </ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a
href="glossary.html#term-statement"><strong>statement</strong></a>
@@ -1220,6 +1237,13 @@
</li>
<li><a
href="python/api/adbc_driver_flightsql.html#adbc_driver_flightsql.DatabaseOptions.TLS_SKIP_VERIFY">TLS_SKIP_VERIFY
(adbc_driver_flightsql.DatabaseOptions attribute)</a>
</li>
+ <li>
+ type inference (recipe)
+
+ <ul>
+ <li><a href="python/recipe/sqlite.html#index-0">SQLite</a>
+</li>
+ </ul></li>
</ul></td>
</tr></table>
</section>
diff --git a/main/glossary.html b/main/glossary.html
index 58c178440..78566e0b5 100644
--- a/main/glossary.html
+++ b/main/glossary.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/index.html b/main/index.html
index 6bc635f8c..6495e9975 100644
--- a/main/index.html
+++ b/main/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/java/driver_manager.html b/main/java/driver_manager.html
index e06d8fc8f..4668578b9 100644
--- a/main/java/driver_manager.html
+++ b/main/java/driver_manager.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/java/index.html b/main/java/index.html
index 0e93b7e34..8a8da34f0 100644
--- a/main/java/index.html
+++ b/main/java/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/java/quickstart.html b/main/java/quickstart.html
index 5a0e3e9ff..8fe35a9c2 100644
--- a/main/java/quickstart.html
+++ b/main/java/quickstart.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/objects.inv b/main/objects.inv
index 91713cca1..7794a5ae2 100644
Binary files a/main/objects.inv and b/main/objects.inv differ
diff --git a/main/py-modindex.html b/main/py-modindex.html
index f58504298..e2abdbafd 100644
--- a/main/py-modindex.html
+++ b/main/py-modindex.html
@@ -298,6 +298,7 @@
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/api/adbc_driver_flightsql.html
b/main/python/api/adbc_driver_flightsql.html
index 78c2928f0..a912ab956 100644
--- a/main/python/api/adbc_driver_flightsql.html
+++ b/main/python/api/adbc_driver_flightsql.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/api/adbc_driver_manager.html
b/main/python/api/adbc_driver_manager.html
index 6d6a6248a..02efbb02f 100644
--- a/main/python/api/adbc_driver_manager.html
+++ b/main/python/api/adbc_driver_manager.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/api/adbc_driver_postgresql.html
b/main/python/api/adbc_driver_postgresql.html
index 2b3266263..191677604 100644
--- a/main/python/api/adbc_driver_postgresql.html
+++ b/main/python/api/adbc_driver_postgresql.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/api/adbc_driver_sqlite.html
b/main/python/api/adbc_driver_sqlite.html
index bcc60a518..52437ed87 100644
--- a/main/python/api/adbc_driver_sqlite.html
+++ b/main/python/api/adbc_driver_sqlite.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/api/index.html b/main/python/api/index.html
index bef6c0b76..2f3d98fcd 100644
--- a/main/python/api/index.html
+++ b/main/python/api/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/driver_manager.html b/main/python/driver_manager.html
index 0329e4a06..72941e274 100644
--- a/main/python/driver_manager.html
+++ b/main/python/driver_manager.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/index.html b/main/python/index.html
index a04600605..af82055b5 100644
--- a/main/python/index.html
+++ b/main/python/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
@@ -410,6 +411,7 @@
<li class="toctree-l2"><a class="reference internal"
href="recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l2"><a class="reference internal"
href="recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/quickstart.html b/main/python/quickstart.html
index ab3600a87..64117f247 100644
--- a/main/python/quickstart.html
+++ b/main/python/quickstart.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/recipe/driver_manager.html
b/main/python/recipe/driver_manager.html
index ea566dd78..698d61d8f 100644
--- a/main/python/recipe/driver_manager.html
+++ b/main/python/recipe/driver_manager.html
@@ -308,6 +308,7 @@
<li class="toctree-l3 current current-page"><a class="current reference
internal" href="#">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal" href="sqlite.html">SQLite
Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/recipe/flight_sql.html
b/main/python/recipe/flight_sql.html
index 313e781fc..4802f472e 100644
--- a/main/python/recipe/flight_sql.html
+++ b/main/python/recipe/flight_sql.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3 current current-page"><a class="current reference
internal" href="#">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal" href="sqlite.html">SQLite
Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/python/recipe/index.html b/main/python/recipe/index.html
index 496e86dc7..fb5ef437e 100644
--- a/main/python/recipe/index.html
+++ b/main/python/recipe/index.html
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal" href="sqlite.html">SQLite
Recipes</a></li>
</ul>
</li>
</ul>
@@ -416,6 +417,10 @@ Python.</p>
<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#using-polars-and-adbc">Using Polars and ADBC</a></li>
</ul>
</li>
+<li class="toctree-l1"><a class="reference internal" href="sqlite.html">SQLite
Recipes</a><ul>
+<li class="toctree-l2"><a class="reference internal"
href="sqlite.html#change-the-batch-size-of-the-result-set">Change the batch
size of the result set</a></li>
+</ul>
+</li>
</ul>
</div>
</section>
diff --git a/main/python/recipe/postgresql.html
b/main/python/recipe/postgresql.html
index 7f6c6c0ab..f0ab202c6 100644
--- a/main/python/recipe/postgresql.html
+++ b/main/python/recipe/postgresql.html
@@ -13,7 +13,7 @@
<meta property="og:image"
content="https://arrow.apache.org/adbc/main/_static/banner.png" />
<meta property="og:image:alt" content="ADBC" />
<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="R" href="../../r/index.html" /><link rel="prev" title="Flight SQL
Recipes" href="flight_sql.html" />
+<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.1.3 and Furo 2024.08.06 -->
<title>PostgreSQL Recipes - ADBC 17 (dev) documentation</title>
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3 current current-page"><a class="current reference
internal" href="#">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal" href="sqlite.html">SQLite
Recipes</a></li>
</ul>
</li>
</ul>
@@ -1112,12 +1113,12 @@ we can just pass the URI and tell Polars to manage ADBC
for us.</p>
<footer>
<div class="related-pages">
- <a class="next-page" href="../../r/index.html">
+ <a class="next-page" href="sqlite.html">
<div class="page-info">
<div class="context">
<span>Next</span>
</div>
- <div class="title">R</div>
+ <div class="title">SQLite Recipes</div>
</div>
<svg class="furo-related-icon"><use
href="#svg-arrow-right"></use></svg>
</a>
diff --git a/main/python/recipe/index.html b/main/python/recipe/sqlite.html
similarity index 69%
copy from main/python/recipe/index.html
copy to main/python/recipe/sqlite.html
index 496e86dc7..afa72465d 100644
--- a/main/python/recipe/index.html
+++ b/main/python/recipe/sqlite.html
@@ -5,18 +5,18 @@
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><meta name="viewport"
content="width=device-width, initial-scale=1" />
-<meta property="og:title" content="Python Cookbook" />
+<meta property="og:title" content="SQLite Recipes" />
<meta property="og:type" content="website" />
-<meta property="og:url"
content="https://arrow.apache.org/adbc/main/python/recipe/index.html" />
+<meta property="og:url"
content="https://arrow.apache.org/adbc/main/python/recipe/sqlite.html" />
<meta property="og:site_name" content="ADBC" />
-<meta property="og: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..." />
+<meta property="og: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..." />
<meta property="og:image"
content="https://arrow.apache.org/adbc/main/_static/banner.png" />
<meta property="og:image:alt" content="ADBC" />
-<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" />
+<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.1.3 and Furo 2024.08.06 -->
- <title>Python Cookbook - ADBC 17 (dev) documentation</title>
+ <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" />
<link rel="stylesheet" type="text/css"
href="../../_static/copybutton.css?v=76b2166b" />
@@ -247,7 +247,7 @@
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
- <label class="toc-overlay-icon toc-header-icon no-toc" for="__toc">
+ <label class="toc-overlay-icon toc-header-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
@@ -304,10 +304,11 @@
<li class="toctree-l3"><a class="reference internal"
href="../api/adbc_driver_sqlite.html"><code class="docutils literal
notranslate"><span class="pre">adbc_driver_sqlite</span></code></a></li>
</ul>
</li>
-<li class="toctree-l2 current has-children current-page"><a class="current
reference internal" href="#">Python Cookbook</a><input checked=""
class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5"
role="switch" type="checkbox"/><label for="toctree-checkbox-5"><div
class="visually-hidden">Toggle navigation of Python Cookbook</div><i
class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
+<li class="toctree-l2 current has-children"><a class="reference internal"
href="index.html">Python Cookbook</a><input checked="" class="toctree-checkbox"
id="toctree-checkbox-5" name="toctree-checkbox-5" role="switch"
type="checkbox"/><label for="toctree-checkbox-5"><div
class="visually-hidden">Toggle navigation of Python Cookbook</div><i
class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul
class="current">
<li class="toctree-l3"><a class="reference internal"
href="driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3 current current-page"><a class="current reference
internal" href="#">SQLite Recipes</a></li>
</ul>
</li>
</ul>
@@ -360,12 +361,12 @@
</a>
<div class="content-icon-container">
<div class="view-this-page">
- <a class="muted-link"
href="https://github.com/apache/arrow-adbc/blob/main/docs/source/python/recipe/index.rst?plain=true"
title="View this page">
+ <a class="muted-link"
href="https://github.com/apache/arrow-adbc/blob/main/docs/source/python/recipe/sqlite.rst?plain=true"
title="View this page">
<svg><use href="#svg-eye"></use></svg>
<span class="visually-hidden">View this page</span>
</a>
</div><div class="edit-this-page">
- <a class="muted-link"
href="https://github.com/apache/arrow-adbc/edit/main/docs/source/python/recipe/index.rst"
title="Edit this page">
+ <a class="muted-link"
href="https://github.com/apache/arrow-adbc/edit/main/docs/source/python/recipe/sqlite.rst"
title="Edit this page">
<svg><use href="#svg-pencil"></use></svg>
<span class="visually-hidden">Edit this page</span>
</a>
@@ -378,46 +379,85 @@
<svg class="theme-icon-when-light"><use
href="#svg-sun"></use></svg>
</button>
</div>
- <label class="toc-overlay-icon toc-content-icon no-toc" for="__toc">
+ <label class="toc-overlay-icon toc-content-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
<article role="main" id="furo-main-content">
- <section id="python-cookbook">
-<h1>Python Cookbook<a class="headerlink" href="#python-cookbook" title="Link
to this heading">¶</a></h1>
-<p>The cookbook provides task-oriented example code for using ADBC in
-Python.</p>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal"
href="driver_manager.html">DBAPI/Driver Manager Recipes</a><ul>
-<li class="toctree-l2"><a class="reference internal"
href="driver_manager.html#direct-use-of-the-low-level-bindings">Direct use of
the low-level bindings</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="driver_manager.html#manually-preparing-a-statement">Manually preparing a
statement</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal"
href="flight_sql.html">Flight SQL Recipes</a><ul>
-<li class="toctree-l2"><a class="reference internal"
href="flight_sql.html#connect-to-an-unsecured-flight-sql-service">Connect to an
unsecured Flight SQL service</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="flight_sql.html#connect-to-a-flight-sql-service-with-username-and-password">Connect
to a Flight SQL service with username and password</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="flight_sql.html#set-timeouts-and-other-options">Set timeouts and other
options</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="flight_sql.html#set-the-max-grpc-message-size">Set the max gRPC message
size</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal"
href="postgresql.html">PostgreSQL Recipes</a><ul>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#authenticate-with-a-username-and-password">Authenticate
with a username and password</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#create-append-to-a-table-from-an-arrow-dataset">Create/append
to a table from an Arrow dataset</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#create-append-to-a-table-from-an-arrow-table">Create/append
to a table from an Arrow table</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#create-append-to-a-temporary-table">Create/append to a
temporary table</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#execute-a-statement-with-bind-parameters">Execute a
statement with bind parameters</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#get-the-arrow-schema-of-a-table">Get the Arrow schema of
a table</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#get-the-arrow-schema-of-a-query">Get the Arrow schema of
a query</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#list-catalogs-schemas-and-tables">List catalogs, schemas,
and tables</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#connection-pooling-with-sqlalchemy">Connection pooling
with SQLAlchemy</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#using-pandas-and-adbc">Using Pandas and ADBC</a></li>
-<li class="toctree-l2"><a class="reference internal"
href="postgresql.html#using-polars-and-adbc">Using Polars and ADBC</a></li>
-</ul>
-</li>
-</ul>
+ <section id="sqlite-recipes">
+<h1>SQLite Recipes<a class="headerlink" href="#sqlite-recipes" title="Link to
this heading">¶</a></h1>
+<section id="change-the-batch-size-of-the-result-set">
+<h2>Change the batch size of the result set<a class="headerlink"
href="#change-the-batch-size-of-the-result-set" title="Link to this
heading">¶</a></h2>
+<p id="index-0">Recipe source: <a class="reference external"
href="https://github.com/apache/arrow-adbc/blob/main/docs/source/python/recipe/sqlite_batch_rows.py">sqlite_batch_rows.py</a></p>
+<p>The ADBC SQLite driver allows control over the size of batches in result
+sets. Because the driver performs type inference, this also controls how
+many rows the driver will look at to figure out the type. If you know your
+result set has many NULL rows up front, you may consider increasing the
+batch size so that the driver can infer the correct types.</p>
+<div class="highlight-python notranslate"><div
class="highlight"><pre><span></span><span class="linenos">28</span><span
class="kn">import</span><span class="w"> </span><span
class="nn">adbc_driver_sqlite.dbapi</span>
+<span class="linenos">29</span>
+<span class="linenos">30</span><span class="n">conn</span> <span
class="o">=</span> <span class="n">adbc_driver_sqlite</span><span
class="o">.</span><span class="n">dbapi</span><span class="o">.</span><span
class="n">connect</span><span class="p">()</span>
+</pre></div>
+</div>
+<p>First we’ll set up a demo table with 1024 NULL values.</p>
+<div class="highlight-python notranslate"><div
class="highlight"><pre><span></span><span class="linenos">34</span><span
class="k">with</span> <span class="n">conn</span><span class="o">.</span><span
class="n">cursor</span><span class="p">()</span> <span class="k">as</span>
<span class="n">cur</span><span class="p">:</span>
+<span class="linenos">35</span> <span class="n">cur</span><span
class="o">.</span><span class="n">execute</span><span class="p">(</span><span
class="s2">"CREATE TABLE demo (val TEXT)"</span><span
class="p">)</span>
+<span class="linenos">36</span>
+<span class="linenos">37</span> <span class="n">cur</span><span
class="o">.</span><span class="n">execute</span><span class="p">(</span>
+<span class="linenos">38</span><span class="w"> </span><span
class="sd">"""</span>
+<span class="linenos">39</span><span class="sd"> WITH RECURSIVE series(n)
AS (</span>
+<span class="linenos">40</span><span class="sd"> SELECT 1</span>
+<span class="linenos">41</span><span class="sd"> UNION ALL</span>
+<span class="linenos">42</span><span class="sd"> SELECT n + 1</span>
+<span class="linenos">43</span><span class="sd"> FROM series</span>
+<span class="linenos">44</span><span class="sd"> WHERE n + 1 <=
1024</span>
+<span class="linenos">45</span><span class="sd"> )</span>
+<span class="linenos">46</span><span class="sd"> INSERT INTO demo
(val)</span>
+<span class="linenos">47</span><span class="sd"> SELECT NULL</span>
+<span class="linenos">48</span><span class="sd"> FROM series</span>
+<span class="linenos">49</span><span class="sd"> """</span>
+<span class="linenos">50</span> <span class="p">)</span>
+<span class="linenos">51</span>
+<span class="linenos">52</span> <span class="n">cur</span><span
class="o">.</span><span class="n">execute</span><span class="p">(</span><span
class="s2">"INSERT INTO demo VALUES ('foo'), ('bar'),
('baz')"</span><span class="p">)</span>
+</pre></div>
+</div>
+<p>If we query the table naively, we’ll get an error, because the driver first
+looks at the first 1024 values to determine the column type. But since
+every value is NULL, it falls back to the default type of int64, which poses
+a problem when it then encounters a string in the next batch.</p>
+<div class="highlight-python notranslate"><div
class="highlight"><pre><span></span><span class="linenos">59</span><span
class="k">with</span> <span class="n">conn</span><span class="o">.</span><span
class="n">cursor</span><span class="p">()</span> <span class="k">as</span>
<span class="n">cur</span><span class="p">:</span>
+<span class="linenos">60</span> <span class="k">try</span><span
class="p">:</span>
+<span class="linenos">61</span> <span class="n">cur</span><span
class="o">.</span><span class="n">execute</span><span class="p">(</span><span
class="s2">"SELECT * FROM demo"</span><span class="p">)</span>
+<span class="linenos">62</span> <span class="nb">print</span><span
class="p">(</span><span class="n">cur</span><span class="o">.</span><span
class="n">fetchallarrow</span><span class="p">()</span><span
class="o">.</span><span class="n">schema</span><span class="p">)</span>
+<span class="linenos">63</span> <span class="k">except</span> <span
class="ne">OSError</span> <span class="k">as</span> <span
class="n">e</span><span class="p">:</span>
+<span class="linenos">64</span> <span class="nb">print</span><span
class="p">(</span><span class="n">e</span><span class="p">)</span>
+<span class="linenos">65</span> <span class="c1"># Output:</span>
+<span class="linenos">66</span> <span class="c1"># [SQLite] Type
mismatch in column 0: expected INT64 but got STRING/BINARY</span>
+<span class="linenos">67</span> <span class="k">else</span><span
class="p">:</span>
+<span class="linenos">68</span> <span class="k">raise</span> <span
class="ne">RuntimeError</span><span class="p">(</span><span
class="s2">"Expected an error"</span><span class="p">)</span>
+</pre></div>
+</div>
+<p>We can tell the driver to increase the batch size (and hence look at more
+rows).</p>
+<div class="highlight-python notranslate"><div
class="highlight"><pre><span></span><span class="linenos">73</span><span
class="k">with</span> <span class="n">conn</span><span class="o">.</span><span
class="n">cursor</span><span class="p">()</span> <span class="k">as</span>
<span class="n">cur</span><span class="p">:</span>
+<span class="linenos">74</span> <span class="n">cur</span><span
class="o">.</span><span class="n">adbc_statement</span><span
class="o">.</span><span class="n">set_options</span><span class="p">(</span>
+<span class="linenos">75</span> <span class="o">**</span><span
class="p">{</span>
+<span class="linenos">76</span> <span
class="n">adbc_driver_sqlite</span><span class="o">.</span><span
class="n">StatementOptions</span><span class="o">.</span><span
class="n">BATCH_ROWS</span><span class="o">.</span><span
class="n">value</span><span class="p">:</span> <span
class="mi">2048</span><span class="p">,</span>
+<span class="linenos">77</span> <span class="p">}</span>
+<span class="linenos">78</span> <span class="p">)</span>
+<span class="linenos">79</span> <span class="n">cur</span><span
class="o">.</span><span class="n">execute</span><span class="p">(</span><span
class="s2">"SELECT * FROM demo"</span><span class="p">)</span>
+<span class="linenos">80</span> <span class="nb">print</span><span
class="p">(</span><span class="n">cur</span><span class="o">.</span><span
class="n">fetchallarrow</span><span class="p">()</span><span
class="o">.</span><span class="n">schema</span><span class="p">)</span>
+</pre></div>
+</div>
+<div class="literal-block-wrapper docutils container" id="id1">
+<div class="code-block-caption"><span class="caption-text">stdout</span><a
class="headerlink" href="#id1" title="Link to this code">¶</a></div>
+<div class="highlight-text notranslate"><div
class="highlight"><pre><span></span>[SQLite] Type mismatch in column 0:
expected INT64 but got STRING/BINARY
+val: string
+</pre></div>
</div>
+</div>
+</section>
</section>
</article>
@@ -425,23 +465,23 @@ Python.</p>
<footer>
<div class="related-pages">
- <a class="next-page" href="driver_manager.html">
+ <a class="next-page" href="../../r/index.html">
<div class="page-info">
<div class="context">
<span>Next</span>
</div>
- <div class="title">DBAPI/Driver Manager Recipes</div>
+ <div class="title">R</div>
</div>
<svg class="furo-related-icon"><use
href="#svg-arrow-right"></use></svg>
</a>
- <a class="prev-page" href="../api/adbc_driver_sqlite.html">
+ <a class="prev-page" href="postgresql.html">
<svg class="furo-related-icon"><use
href="#svg-arrow-right"></use></svg>
<div class="page-info">
<div class="context">
<span>Previous</span>
</div>
- <div class="title"><code class="docutils literal
notranslate"><span class="pre">adbc_driver_sqlite</span></code></div>
+ <div class="title">PostgreSQL Recipes</div>
</div>
</a>
@@ -466,8 +506,27 @@ United States and other countries.
</footer>
</div>
- <aside class="toc-drawer no-toc">
+ <aside class="toc-drawer">
+
+ <div class="toc-sticky toc-scroll">
+ <div class="toc-title-container">
+ <span class="toc-title">
+ On this page
+ </span>
+ </div>
+ <div class="toc-tree-container">
+ <div class="toc-tree">
+ <ul>
+<li><a class="reference internal" href="#">SQLite Recipes</a><ul>
+<li><a class="reference internal"
href="#change-the-batch-size-of-the-result-set">Change the batch size of the
result set</a></li>
+</ul>
+</li>
+</ul>
+
+ </div>
+ </div>
+ </div>
</aside>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index 1ae345017..30e8cf9aa 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-16T04:40Z
+last_built: 2025-02-17T01:32Z
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 c67a42261..4cfb006da 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-16T04:41Z
+last_built: 2025-02-17T01:32Z
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 28bc18880..91778b3b5 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
0x56161ce40e20> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_connection at
0x55a015cc9880> </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 0x56161d0d5c30> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
database:<adbc_database at 0x55a015c0df90> </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 31cabaf00..9728709ae 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
0x56161d8ebab0> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_database at
0x55a0161f5020> </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 6334eeb7a..ebcedf7d6 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
0x56161b472440> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_statement at
0x55a01546ec90> </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 0x56161cd816b0> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
connection:<adbc_connection at 0x55a0131ba650> </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 0x56161c0d2980> </span>
+<span class="r-out co"><span class="r-pr">#></span> ..$
database:<adbc_database at 0x55a0139edc50> </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 7edd6ccd4..3e789943b 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 e7518d449..179684eed 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-16T04:41Z
+last_built: 2025-02-17T01:32Z
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 eb617ade5..40fe4e73b 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-16T04:40Z
+last_built: 2025-02-17T01:32Z
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 0db4c9ca6..bedf3c812 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-16T04:41Z
+last_built: 2025-02-17T01:32Z
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 9f276a409..50a056cea 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-16T04:41Z
+last_built: 2025-02-17T01:32Z
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 148375577..c3c65a3ba 100644
--- a/main/r/index.html
+++ b/main/r/index.html
@@ -13,7 +13,7 @@
<meta property="og:image"
content="https://arrow.apache.org/adbc/main/_static/banner.png" />
<meta property="og:image:alt" content="ADBC" />
<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="PostgreSQL
Recipes" href="../python/recipe/postgresql.html" />
+<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.1.3 and Furo 2024.08.06 -->
<title>R - ADBC 17 (dev) documentation</title>
@@ -308,6 +308,7 @@
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/driver_manager.html">DBAPI/Driver Manager
Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="../python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
@@ -443,14 +444,14 @@ details specific to each driver.</p>
</div>
<svg class="furo-related-icon"><use
href="#svg-arrow-right"></use></svg>
</a>
- <a class="prev-page" href="../python/recipe/postgresql.html">
+ <a class="prev-page" href="../python/recipe/sqlite.html">
<svg class="furo-related-icon"><use
href="#svg-arrow-right"></use></svg>
<div class="page-info">
<div class="context">
<span>Previous</span>
</div>
- <div class="title">PostgreSQL Recipes</div>
+ <div class="title">SQLite Recipes</div>
</div>
</a>
diff --git a/main/search.html b/main/search.html
index a79fc503d..0463a56fc 100644
--- a/main/search.html
+++ b/main/search.html
@@ -300,6 +300,7 @@
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/driver_manager.html">DBAPI/Driver Manager Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/flight_sql.html">Flight SQL Recipes</a></li>
<li class="toctree-l3"><a class="reference internal"
href="python/recipe/postgresql.html">PostgreSQL Recipes</a></li>
+<li class="toctree-l3"><a class="reference internal"
href="python/recipe/sqlite.html">SQLite Recipes</a></li>
</ul>
</li>
</ul>
diff --git a/main/searchindex.js b/main/searchindex.js
index e11cfd4cb..8c0c59906 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"ADBC API Standard": [[24, null]], "API
Reference": [[3, "api-reference"], [29, "api-reference"], [37,
"api-reference"]], "And then what is the \u201cADBC JDBC driver\u201d?": [[20,
"and-then-what-is-the-adbc-jdbc-driver"]], "Apache Arrow ADBC": [[27, null]],
"Arrow type to PostgreSQL type mapping": [[16, "id5"]], "Authenticate with a
username and password": [[43, "authenticate-with-a-username-and-password"]],
"Authentication": [[13, "authentication"], [17, [...]
\ No newline at end of file
+Search.setIndex({"alltitles": {"ADBC API Standard": [[24, null]], "API
Reference": [[3, "api-reference"], [29, "api-reference"], [37,
"api-reference"]], "And then what is the \u201cADBC JDBC driver\u201d?": [[20,
"and-then-what-is-the-adbc-jdbc-driver"]], "Apache Arrow ADBC": [[27, null]],
"Arrow type to PostgreSQL type mapping": [[16, "id5"]], "Authenticate with a
username and password": [[43, "authenticate-with-a-username-and-password"]],
"Authentication": [[13, "authentication"], [17, [...]
\ No newline at end of file