read_mdb {mdbr} | R Documentation |
Read a table as data frame
Description
Use export_mdb()
to write a table as a temporary CSV file, which is then
read as a data frame using readr::read_delim()
.
Usage
read_mdb(file, table, col_names = TRUE, col_types = NULL, ...)
Arguments
file |
Path to the Microsoft Access file. |
table |
Name of the table, list with |
col_names |
Whether or not to suppress column names from the table. |
col_types |
One of |
... |
Additional arguments passed to |
Value
A data frame.
Examples
## Not run:
read_mdb(mdb_example(), "Airlines")
## End(Not run)
[Package mdbr version 0.2.1 Index]