mdb-tables is a utility program distributed with MDB Tools.
It outputs the names of all user tables (or other object types) in an MDB
database file.
mdb_tables(
file,
system = FALSE,
type = c("table", "query", "systable", "any", "all", "form", "macro", "report",
"linkedtable", "module", "relationship", "dbprop"),
show_type = FALSE
)Path to the Microsoft Access file.
Logical; include system (MSys*) tables. Equivalent to -S.
Object type to list: "table" (default), "query",
"systable", "any", "all", "form", "macro", "report",
"linkedtable", "module", "relationship", or "dbprop".
Equivalent to -t.
Logical; prefix each entry with its type. Equivalent to -T.
A character vector of object names.
db <- mdb_example()
mdb_tables(db)
#> [1] "Airlines" "Airports" "Flights" "Planes"
mdb_tables(db, type = "query")
#> character(0)