Make core table
make_core(connection = NULL, .debug = FALSE)
connection | a database connection returned by [DBI::dbConnect()] |
---|---|
.debug | logical flag to use internal simulated data for testing |
a remote database table
Prepares the appropriate table joins in the CC-HIC database to ready for querying
if (FALSE) { # Make a database connection object using DBI::dbConnect() # ctn <- DBI::dbConnect() core <- make_core(ctn) head(core) DBI::dbDisconnect(ctn) }