| ext_uninstall | R Documentation |
Removes the extension file from DuckDB's extension_directory. Optionally
also purges the corresponding entry from the local cache.
ext_uninstall(
name,
purge_cache = FALSE,
cache = ext_cache(),
conn = conn_default()
)
name |
Character scalar. Extension name. |
purge_cache |
Logical. If |
cache |
An |
conn |
A DuckDB connection. Defaults to |
Invisibly returns conn.
## Not run:
# Requires a connection with the extension already installed.
conn <- DBI::dbConnect(duckdb::duckdb())
ext_uninstall("httpfs", 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.