powered by
Use export_mdb() to write a table as a temporary CSV file, which is then read as a data frame using readr::read_delim().
export_mdb()
readr::read_delim()
read_mdb(file, table, col_names = TRUE, col_types = NULL, ...)
A data frame.
Path to the Microsoft Access file.
Name of the table, list with mdb_tables().
mdb_tables()
Whether or not to suppress column names from the table.
One of NULL, a readr::cols() specification, or a string. See vignette("readr") for more details. Use TRUE to create a generic readr::cols() specification with mdb_schema().
NULL
readr::cols()
vignette("readr")
TRUE
mdb_schema()
Additional arguments passed to readr::read_delim().
if (FALSE) { read_mdb(mdb_example(), "Airlines") }
Run the code above in your browser using DataLab