eunomia_dir {CDMConnector} | R Documentation |
Create a copy of the duckdb Eunomia CDM and return the file path
eunomia_dir(exdir = NULL)
exdir |
Enclosing directory where the Eunomia CDM should be created. If NULL (default) then a temp folder is created. |
The full path to the new Eunomia CDM that can be passed to dbConnect()
## Not run:
library(DBI)
library(CDMConnector)
con <- dbConnect(duckdb::duckdb(), dbdir = getEunomiaPath())
dbListTables(con)
dbDisconnect(con)
## End(Not run)