R/tables.R

Defines functions mdb_tables

Documented in mdb_tables

#' List tables in a Microsoft Access database
#'
#' @param file Path to the Microsoft Access file.
#' @return A character vector of table names.
#' @export
mdb_tables <- function(file) {
  check_mdb_tools()
  system2(
    command = Sys.which("mdb-tables"),
    args = c("-1", shQuote(file)),
    stdout = TRUE
  )
}

Try the mdbr package in your browser

Any scripts or data that you put into this service are public.

mdbr documentation built on May 29, 2024, 7:27 a.m.