| ext_install_local | R Documentation |
Executes INSTALL '/path/to/ext.duckdb_extension' on conn. Use this to
install an extension binary you already have on disk without going through a
remote repository.
ext_install_local(path, name = NULL, conn = conn_default())
path |
Character scalar. Path to the |
name |
Character scalar. Extension name used in messages. Inferred
from |
conn |
A DuckDB connection. Defaults to |
Invisibly returns conn.
## Not run:
# Requires a local DuckDB extension file at the given path.
conn <- DBI::dbConnect(duckdb::duckdb())
ext_install_local("/path/to/httpfs.duckdb_extension", conn = conn)
DBI::dbDisconnect(conn, shutdown = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.