| ext_is_installed | R Documentation |
Check whether a DuckDB extension is installed
ext_is_installed(name, conn = conn_default())
name |
Character scalar. Extension name. |
conn |
A DuckDB connection. Defaults to |
Logical scalar.
conn <- DBI::dbConnect(duckdb::duckdb())
ext_is_installed("httpfs", conn = conn)
DBI::dbDisconnect(conn, shutdown = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.