Load a database cached in the db subfolder into the Global Environment

load_fcdb(db, Force = FALSE, ...)

Arguments

db

Name of table (and the stem of rda file).

Force

Whether to load even if table already exists (default FALSE).

...

Additional arguments passed to load_fcdata

Value

A character vector of the names of objects created, invisibly or NULL if nothing loaded.

See also

load_fcdata

Examples

# NOT RUN {
load_fcdb("neuron")
load_fcdb(neuron) # also works
load_fcdb(neuron,Force=TRUE)
# }