Reads a table directly from a Microsoft Access database using the bundled mdbtools C library. Column types are inferred from the MDB schema: integer, double, logical, POSIXct for DateTime columns, and character otherwise.
read_mdb(file, table, col_names = TRUE, col_types = NULL, ...)Path to the Microsoft Access file.
Name of the table, list with mdb_tables().
Logical; when FALSE columns are named V1, V2, etc.
Ignored. Type coercion
is now handled automatically by the native reader.
Ignored. Extra arguments were
previously forwarded to
readr::read_delim(), which is no longer used.
A tibble.
if (FALSE) { # \dontrun{
read_mdb(mdb_example(), "Airlines")
} # }