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

commit ce0f9d5306a8f94b4e03c9770e5379fe918cc62b
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Mar 14 13:35:26 2026 +0000

    publish documentation
---
 main/_sources/format/connection_profiles.rst.txt   | 34 ++++++++++----------
 ...up__adbc-driver-manager-connection-profile.html |  4 +--
 main/format/connection_profiles.html               | 36 +++++++++++-----------
 main/r/adbcbigquery/pkgdown.yml                    |  2 +-
 main/r/adbcdrivermanager/pkgdown.yml               |  2 +-
 .../reference/adbc_connection_init.html            |  4 +--
 .../reference/adbc_connection_init.md              |  4 +--
 .../reference/adbc_database_init.html              |  2 +-
 .../reference/adbc_database_init.md                |  2 +-
 .../reference/adbc_statement_init.html             |  6 ++--
 .../reference/adbc_statement_init.md               |  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/searchindex.js                                |  2 +-
 17 files changed, 57 insertions(+), 57 deletions(-)

diff --git a/main/_sources/format/connection_profiles.rst.txt 
b/main/_sources/format/connection_profiles.rst.txt
index 228ff448b..c9336b8c9 100644
--- a/main/_sources/format/connection_profiles.rst.txt
+++ b/main/_sources/format/connection_profiles.rst.txt
@@ -74,10 +74,10 @@ Filesystem-based profiles use TOML format with the 
following structure:
 
 .. code-block:: toml
 
-   version = 1
+   profile_version = 1
    driver = "snowflake"
 
-   [options]
+   [Options]
    # String options
    adbc.snowflake.sql.account = "mycompany"
    adbc.snowflake.sql.warehouse = "COMPUTE_WH"
@@ -93,14 +93,14 @@ Filesystem-based profiles use TOML format with the 
following structure:
    # Boolean options (converted to "true" or "false" strings)
    adbc.snowflake.sql.client_session_keep_alive = true
 
-version
--------
+profile_version
+---------------
 
 - **Required**: Yes
 - **Type**: Integer
 - **Supported values**: ``1``
 
-The ``version`` field specifies the profile format version. Currently, only 
version 1 is supported.
+The ``profile_version`` field specifies the profile format version. Currently, 
only version 1 is supported.
 This will enable future changes while maintaining backward compatibility.
 
 driver
@@ -122,7 +122,7 @@ For more detils, see :doc:`driver_manifests`.
 Options Section
 ---------------
 
-The ``[options]`` section contains driver-specific configuration options. 
Options can be of the following types:
+The ``[Options]`` section contains driver-specific configuration options. 
Options can be of the following types:
 
 **String values**
    Applied using ``AdbcDatabaseSetOption()``
@@ -175,15 +175,15 @@ Profile values can reference environment variables using 
the ``{{ env_var() }}``
 
 .. code-block:: toml
 
-   version = 1
+   profile_version = 1
    driver = "adbc_driver_snowflake"
 
-   [options]
+   [Options]
    adbc.snowflake.sql.account = "{{ env_var(SNOWFLAKE_ACCOUNT) }}"
    adbc.snowflake.sql.auth_token = "{{ env_var(SNOWFLAKE_TOKEN) }}"
    adbc.snowflake.sql.warehouse = "COMPUTE_WH"
 
-When the driver manager encounters ``{{ env_var(VAR_NAME) }}``, it replaces 
the value with the contents of environment variable ``VAR_NAME``. If the 
environment variable is not set, the value becomes an empty string.
+When the driver manager encounters ``{{ env_var(VAR_NAME) }}``, it replaces 
the placeholder with the contents of environment variable ``VAR_NAME``. If the 
environment variable is not set, the placeholder is replaced with an empty 
string and processing of the rest of the value continues (e.g. ``"foo{{ 
env_var(MISSING) }}bar"`` becomes ``"foobar"``).
 
 Profile Search Locations
 =========================
@@ -227,10 +227,10 @@ File: ``~/.config/adbc/profiles/snowflake_prod.toml``
 
 .. code-block:: toml
 
-   version = 1
+   profile_version = 1
    driver = "snowflake"
 
-   [options]
+   [Options]
    adbc.snowflake.sql.account = "{{ env_var(SNOWFLAKE_ACCOUNT) }}"
    adbc.snowflake.sql.auth_token = "{{ env_var(SNOWFLAKE_TOKEN) }}"
    adbc.snowflake.sql.warehouse = "PRODUCTION_WH"
@@ -260,10 +260,10 @@ File: ``~/.config/adbc/profiles/postgres_dev.toml``
 
 .. code-block:: toml
 
-   version = 1
+   profile_version = 1
    driver = "postgresql"
 
-   [options]
+   [Options]
    uri = "postgresql://localhost:5432/dev_db?sslmode=disable"
    username = "dev_user"
    password = "{{ env_var(POSTGRES_DEV_PASSWORD) }}"
@@ -277,10 +277,10 @@ File: ``~/.config/adbc/profiles/default_timeouts.toml``
 
 .. code-block:: toml
 
-   version = 1
+   profile_version = 1
    # No driver specified - can be used with any driver
 
-   [options]
+   [Options]
    adbc.connection.timeout = 30.0
    adbc.statement.timeout = 60.0
 
@@ -303,7 +303,7 @@ Option Precedence
 Options are applied in the following order (later overrides earlier):
 
 1. Driver defaults
-2. Profile options (from ``[options]`` section)
+2. Profile options (from ``[Options]`` section)
 3. Options set via ``AdbcDatabaseSetOption()`` before ``AdbcDatabaseInit()``
 
 Example:
@@ -434,7 +434,7 @@ Store credentials separately from code:
 
 .. code-block:: toml
 
-   [options]
+   [Options]
    adbc.snowflake.sql.account = "mycompany"
    adbc.snowflake.sql.auth_token = "{{ env_var(SNOWFLAKE_TOKEN) }}"
 
diff --git a/main/cpp/api/group__adbc-driver-manager-connection-profile.html 
b/main/cpp/api/group__adbc-driver-manager-connection-profile.html
index 8b02577fa..573bfbc29 100644
--- a/main/cpp/api/group__adbc-driver-manager-connection-profile.html
+++ b/main/cpp/api/group__adbc-driver-manager-connection-profile.html
@@ -361,10 +361,10 @@ Functions</h2></td></tr>
 <li>The user-level configuration directory (e.g. ~/.config/adbc/profiles on 
Linux).</li>
 </ol>
 <p>The filesystem-based profile looks for a file named 
&lt;profile_name&gt;.toml if there is no extension provided, attempting to 
parse the toml file for the profile information. If the file is found and 
parsed successfully, the options specified in the profile which have not 
already been set will be set as if by DatabaseSetOption just before 
initialization as part of DatabaseInit.</p>
-<p>For file-based profiles the expected format is as follows: </p><div 
class="fragment"><div class="line">version = 1</div>
+<p>For file-based profiles the expected format is as follows: </p><div 
class="fragment"><div class="line">profile_version = 1</div>
 <div class="line">driver = &quot;driver_name&quot;</div>
 <div class="line"> </div>
-<div class="line">[options]</div>
+<div class="line">[Options]</div>
 <div class="line">option1 = &quot;value1&quot;</div>
 <div class="line">option2 = 42</div>
 <div class="line">option3 = 3.14</div>
diff --git a/main/format/connection_profiles.html 
b/main/format/connection_profiles.html
index ef800c41b..78af015b2 100644
--- a/main/format/connection_profiles.html
+++ b/main/format/connection_profiles.html
@@ -437,10 +437,10 @@ from the profile are applied automatically but do not 
override options already s
 <section id="profile-file-format">
 <h2>Profile File Format<a class="headerlink" href="#profile-file-format" 
title="Link to this heading">¶</a></h2>
 <p>Filesystem-based profiles use TOML format with the following structure:</p>
-<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
+<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">profile_version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
 <span class="n">driver</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;snowflake&quot;</span>
 
-<span class="k">[options]</span>
+<span class="k">[Options]</span>
 <span class="c1"># String options</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span class="n">account</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="s2">&quot;mycompany&quot;</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">warehouse</span><span class="w"> </span><span class="o">=</span><span 
class="w"> </span><span class="s2">&quot;COMPUTE_WH&quot;</span>
@@ -457,14 +457,14 @@ from the profile are applied automatically but do not 
override options already s
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">client_session_keep_alive</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span class="kc">true</span>
 </pre></div>
 </div>
-<section id="version">
-<h3>version<a class="headerlink" href="#version" title="Link to this 
heading">¶</a></h3>
+<section id="profile-version">
+<h3>profile_version<a class="headerlink" href="#profile-version" title="Link 
to this heading">¶</a></h3>
 <ul class="simple">
 <li><p><strong>Required</strong>: Yes</p></li>
 <li><p><strong>Type</strong>: Integer</p></li>
 <li><p><strong>Supported values</strong>: <code class="docutils literal 
notranslate"><span class="pre">1</span></code></p></li>
 </ul>
-<p>The <code class="docutils literal notranslate"><span 
class="pre">version</span></code> field specifies the profile format version. 
Currently, only version 1 is supported.
+<p>The <code class="docutils literal notranslate"><span 
class="pre">profile_version</span></code> field specifies the profile format 
version. Currently, only version 1 is supported.
 This will enable future changes while maintaining backward compatibility.</p>
 </section>
 <section id="driver">
@@ -485,7 +485,7 @@ For more detils, see <a class="reference internal" 
href="driver_manifests.html">
 </section>
 <section id="options-section">
 <h3>Options Section<a class="headerlink" href="#options-section" title="Link 
to this heading">¶</a></h3>
-<p>The <code class="docutils literal notranslate"><span 
class="pre">[options]</span></code> section contains driver-specific 
configuration options. Options can be of the following types:</p>
+<p>The <code class="docutils literal notranslate"><span 
class="pre">[Options]</span></code> section contains driver-specific 
configuration options. Options can be of the following types:</p>
 <dl>
 <dt><strong>String values</strong></dt><dd><p>Applied using <code 
class="docutils literal notranslate"><span 
class="pre">AdbcDatabaseSetOption()</span></code></p>
 <div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">adbc</span><span 
class="p">.</span><span class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span class="n">account</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="s2">&quot;mycompany&quot;</span>
@@ -526,16 +526,16 @@ but this may be extended in the future to support other 
types of dynamic content
 <section id="environment-variable-substitution">
 <h4>Environment Variable Substitution<a class="headerlink" 
href="#environment-variable-substitution" title="Link to this 
heading">¶</a></h4>
 <p>Profile values can reference environment variables using the <code 
class="docutils literal notranslate"><span class="pre">{{</span> <span 
class="pre">env_var()</span> <span class="pre">}}</span></code> syntax:</p>
-<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
+<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">profile_version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
 <span class="n">driver</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;adbc_driver_snowflake&quot;</span>
 
-<span class="k">[options]</span>
+<span class="k">[Options]</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span class="n">account</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="s2">&quot;{{ env_var(SNOWFLAKE_ACCOUNT) }}&quot;</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">auth_token</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span class="s2">&quot;{{ 
env_var(SNOWFLAKE_TOKEN) }}&quot;</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">warehouse</span><span class="w"> </span><span class="o">=</span><span 
class="w"> </span><span class="s2">&quot;COMPUTE_WH&quot;</span>
 </pre></div>
 </div>
-<p>When the driver manager encounters <code class="docutils literal 
notranslate"><span class="pre">{{</span> <span 
class="pre">env_var(VAR_NAME)</span> <span class="pre">}}</span></code>, it 
replaces the value with the contents of environment variable <code 
class="docutils literal notranslate"><span class="pre">VAR_NAME</span></code>. 
If the environment variable is not set, the value becomes an empty string.</p>
+<p>When the driver manager encounters <code class="docutils literal 
notranslate"><span class="pre">{{</span> <span 
class="pre">env_var(VAR_NAME)</span> <span class="pre">}}</span></code>, it 
replaces the placeholder with the contents of environment variable <code 
class="docutils literal notranslate"><span class="pre">VAR_NAME</span></code>. 
If the environment variable is not set, the placeholder is replaced with an 
empty string and processing of the rest of the value continues (e.g. <cod [...]
 </section>
 </section>
 </section>
@@ -576,10 +576,10 @@ but this may be extended in the future to support other 
types of dynamic content
 <section id="example-1-snowflake-production-profile">
 <h3>Example 1: Snowflake Production Profile<a class="headerlink" 
href="#example-1-snowflake-production-profile" title="Link to this 
heading">¶</a></h3>
 <p>File: <code class="docutils literal notranslate"><span 
class="pre">~/.config/adbc/profiles/snowflake_prod.toml</span></code></p>
-<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
+<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">profile_version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
 <span class="n">driver</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;snowflake&quot;</span>
 
-<span class="k">[options]</span>
+<span class="k">[Options]</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span class="n">account</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="s2">&quot;{{ env_var(SNOWFLAKE_ACCOUNT) }}&quot;</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">auth_token</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span class="s2">&quot;{{ 
env_var(SNOWFLAKE_TOKEN) }}&quot;</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">warehouse</span><span class="w"> </span><span class="o">=</span><span 
class="w"> </span><span class="s2">&quot;PRODUCTION_WH&quot;</span>
@@ -605,10 +605,10 @@ but this may be extended in the future to support other 
types of dynamic content
 <section id="example-2-postgresql-development-profile">
 <h3>Example 2: PostgreSQL Development Profile<a class="headerlink" 
href="#example-2-postgresql-development-profile" title="Link to this 
heading">¶</a></h3>
 <p>File: <code class="docutils literal notranslate"><span 
class="pre">~/.config/adbc/profiles/postgres_dev.toml</span></code></p>
-<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
+<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">profile_version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
 <span class="n">driver</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;postgresql&quot;</span>
 
-<span class="k">[options]</span>
+<span class="k">[Options]</span>
 <span class="n">uri</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;postgresql://localhost:5432/dev_db?sslmode=disable&quot;</span>
 <span class="n">username</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;dev_user&quot;</span>
 <span class="n">password</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span class="s2">&quot;{{ 
env_var(POSTGRES_DEV_PASSWORD) }}&quot;</span>
@@ -619,10 +619,10 @@ but this may be extended in the future to support other 
types of dynamic content
 <h3>Example 3: Driver-Agnostic Profile<a class="headerlink" 
href="#example-3-driver-agnostic-profile" title="Link to this 
heading">¶</a></h3>
 <p>Profiles can omit the driver field for reusable configurations:</p>
 <p>File: <code class="docutils literal notranslate"><span 
class="pre">~/.config/adbc/profiles/default_timeouts.toml</span></code></p>
-<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
+<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="n">profile_version</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="mi">1</span>
 <span class="c1"># No driver specified - can be used with any driver</span>
 
-<span class="k">[options]</span>
+<span class="k">[Options]</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">connection</span><span class="p">.</span><span 
class="n">timeout</span><span class="w"> </span><span class="o">=</span><span 
class="w"> </span><span class="mf">30.0</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">statement</span><span class="p">.</span><span 
class="n">timeout</span><span class="w"> </span><span class="o">=</span><span 
class="w"> </span><span class="mf">60.0</span>
 </pre></div>
@@ -644,7 +644,7 @@ but this may be extended in the future to support other 
types of dynamic content
 <p>Options are applied in the following order (later overrides earlier):</p>
 <ol class="arabic simple">
 <li><p>Driver defaults</p></li>
-<li><p>Profile options (from <code class="docutils literal notranslate"><span 
class="pre">[options]</span></code> section)</p></li>
+<li><p>Profile options (from <code class="docutils literal notranslate"><span 
class="pre">[Options]</span></code> section)</p></li>
 <li><p>Options set via <code class="docutils literal notranslate"><span 
class="pre">AdbcDatabaseSetOption()</span></code> before <code class="docutils 
literal notranslate"><span class="pre">AdbcDatabaseInit()</span></code></p></li>
 </ol>
 <p>Example:</p>
@@ -760,7 +760,7 @@ but this may be extended in the future to support other 
types of dynamic content
 <section id="credential-management">
 <h3>Credential Management<a class="headerlink" href="#credential-management" 
title="Link to this heading">¶</a></h3>
 <p>Store credentials separately from code:</p>
-<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="k">[options]</span>
+<div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="k">[Options]</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span class="n">account</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="s2">&quot;mycompany&quot;</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">auth_token</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span class="s2">&quot;{{ 
env_var(SNOWFLAKE_TOKEN) }}&quot;</span>
 </pre></div>
@@ -964,7 +964,7 @@ United States and other countries.
 </ul>
 </li>
 <li><a class="reference internal" href="#profile-file-format">Profile File 
Format</a><ul>
-<li><a class="reference internal" href="#version">version</a></li>
+<li><a class="reference internal" 
href="#profile-version">profile_version</a></li>
 <li><a class="reference internal" href="#driver">driver</a></li>
 <li><a class="reference internal" href="#options-section">Options 
Section</a></li>
 <li><a class="reference internal" href="#value-substitution">Value 
Substitution</a><ul>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index d9f748d45..dbc9e41b9 100644
--- a/main/r/adbcbigquery/pkgdown.yml
+++ b/main/r/adbcbigquery/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-03-14T13:04Z
+last_built: 2026-03-14T13:34Z
 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 02413c824..191ca7de9 100644
--- a/main/r/adbcdrivermanager/pkgdown.yml
+++ b/main/r/adbcdrivermanager/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-03-14T13:04Z
+last_built: 2026-03-14T13:34Z
 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 8d8138349..845c90086 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 
0x55bc733f62b0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x55a4e55c9630&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 0x55bc73a1c030&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x55a4e4c031d0&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_connection_init.md 
b/main/r/adbcdrivermanager/reference/adbc_connection_init.md
index b2926810f..c8f772a50 100644
--- a/main/r/adbcdrivermanager/reference/adbc_connection_init.md
+++ b/main/r/adbcdrivermanager/reference/adbc_connection_init.md
@@ -62,9 +62,9 @@ An object of class 'adbc_connection'
 ``` r
 db <- adbc_database_init(adbc_driver_void())
 adbc_connection_init(db)
-#> <adbc_connection at 0x55bc733f62b0> 
+#> <adbc_connection at 0x55a4e55c9630> 
 #> List of 1
-#>  $ database:<adbc_database at 0x55bc73a1c030> 
+#>  $ database:<adbc_database at 0x55a4e4c031d0> 
 #> List of 1
 #>   ..$ driver:<adbc_driver_void> List of 4
 #>   .. ..$ load_flags      : int 15
diff --git a/main/r/adbcdrivermanager/reference/adbc_database_init.html 
b/main/r/adbcdrivermanager/reference/adbc_database_init.html
index 3430afad5..f9e9419a1 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 
0x55bc74ca4bf0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x55a4e51db2d0&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.md 
b/main/r/adbcdrivermanager/reference/adbc_database_init.md
index c0e9314f8..5a0b8ac51 100644
--- a/main/r/adbcdrivermanager/reference/adbc_database_init.md
+++ b/main/r/adbcdrivermanager/reference/adbc_database_init.md
@@ -61,7 +61,7 @@ An object of class adbc_database
 
 ``` r
 adbc_database_init(adbc_driver_void())
-#> <adbc_database at 0x55bc74ca4bf0> 
+#> <adbc_database at 0x55a4e51db2d0> 
 #> List of 1
 #>  $ driver:<adbc_driver_void> List of 4
 #>   ..$ load_flags      : int 15
diff --git a/main/r/adbcdrivermanager/reference/adbc_statement_init.html 
b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
index ee6951edf..be2a2db19 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 
0x55bc73b93590&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x55a4e47f9d60&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 0x55bc74236a30&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x55a4e4e58e50&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 0x55bc74b30ca0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x55a4e4e02890&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.md 
b/main/r/adbcdrivermanager/reference/adbc_statement_init.md
index 146225bb2..7dd14505a 100644
--- a/main/r/adbcdrivermanager/reference/adbc_statement_init.md
+++ b/main/r/adbcdrivermanager/reference/adbc_statement_init.md
@@ -63,11 +63,11 @@ An object of class 'adbc_statement'
 db <- adbc_database_init(adbc_driver_void())
 con <- adbc_connection_init(db)
 adbc_statement_init(con)
-#> <adbc_statement at 0x55bc73b93590> 
+#> <adbc_statement at 0x55a4e47f9d60> 
 #> List of 1
-#>  $ connection:<adbc_connection at 0x55bc74236a30> 
+#>  $ connection:<adbc_connection at 0x55a4e4e58e50> 
 #> List of 1
-#>   ..$ database:<adbc_database at 0x55bc74b30ca0> 
+#>   ..$ database:<adbc_database at 0x55a4e4e02890> 
 #> List of 1
 #>   .. ..$ driver:<adbc_driver_void> List of 4
 #>   .. .. ..$ load_flags      : int 15
diff --git a/main/r/adbcdrivermanager/search.json 
b/main/r/adbcdrivermanager/search.json
index 2f119bf83..641c58151 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 895d196a9..f9fcf7d55 100644
--- a/main/r/adbcflightsql/pkgdown.yml
+++ b/main/r/adbcflightsql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-03-14T13:04Z
+last_built: 2026-03-14T13:34Z
 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 9cd24cf26..ae4a69412 100644
--- a/main/r/adbcpostgresql/pkgdown.yml
+++ b/main/r/adbcpostgresql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-03-14T13:04Z
+last_built: 2026-03-14T13:34Z
 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 7c9af9029..7715428ed 100644
--- a/main/r/adbcsnowflake/pkgdown.yml
+++ b/main/r/adbcsnowflake/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-03-14T13:04Z
+last_built: 2026-03-14T13:34Z
 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 1ee0fe8cc..3ef20ca73 100644
--- a/main/r/adbcsqlite/pkgdown.yml
+++ b/main/r/adbcsqlite/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-03-14T13:04Z
+last_built: 2026-03-14T13:34Z
 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/searchindex.js b/main/searchindex.js
index dc0308a72..69676e60b 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"ADBC API Standard":[[28,null]],"ADBC Driver 
Manager and Manifests":[[25,null]],"API 
Reference":[[3,"api-reference"],[24,"api-reference"],[33,"api-reference"],[43,"api-reference"],[52,"api-reference"]],"Advanced
 Usage":[[24,"advanced-usage"]],"And then what is the \u201cADBC JDBC 
driver\u201d?":[[22,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow 
ADBC":[[31,null]],"Arrow type to PostgreSQL type 
mapping":[[18,"id5"]],"Authenticate with a username and  [...]
\ No newline at end of file
+Search.setIndex({"alltitles":{"ADBC API Standard":[[28,null]],"ADBC Driver 
Manager and Manifests":[[25,null]],"API 
Reference":[[3,"api-reference"],[24,"api-reference"],[33,"api-reference"],[43,"api-reference"],[52,"api-reference"]],"Advanced
 Usage":[[24,"advanced-usage"]],"And then what is the \u201cADBC JDBC 
driver\u201d?":[[22,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow 
ADBC":[[31,null]],"Arrow type to PostgreSQL type 
mapping":[[18,"id5"]],"Authenticate with a username and  [...]
\ No newline at end of file


Reply via email to