Used to determine the column types for read_mdb(). Passed to col_types in readr::read_delim().

mdb_schema(file, table, condense = FALSE)

Arguments

file

Path to the Microsoft Access file.

table

Name of the table, list with mdb_tables().

condense

Should readr::cols_condense() be called on the spec?

Value

A readr cols specification list.

Examples

if (FALSE) {
mdb_schema(mdb_example(), "Flights", condense = TRUE)
}