if (FALSE) {
con <- DBI::dbConnect(duckdb::duckdb(dbdir = tempfile()))
# Install the 'motherduck' extension
install_extensions(con, "motherduck")
# Install multiple extensions
install_extensions(con, c("fts", "httpfs"))
DBI::dbDisconnect(con)
}
Run the code above in your browser using DataLab