Create database views from local parquet files
retrieve_local_views.Rd'retrieve_local_views' creates database views for each of the files provided. If view names are not also provided, they are imputed from the file names.
Examples
if (FALSE) { # \dontrun{
if(interactive()){
con <- db_connect(dbdir = ":memory:")
fpath <- file.path(system.file("extdata",
package = "parkinsonsMetagenomicData"),
"sample_table.parquet")
retrieve_local_views(con, fpath)
DBI::dbListTables(con)
}
} # }