mdb-prop retrieves properties for one or more objects in an MDB database.
name is the name of the table, query, or other object.
propcol is the name of the MSysObjects column containing properties and
defaults to LvProp.
mdb_prop(
path,
name = NULL,
propcol = "LvProp",
version = FALSE,
as_list = TRUE
)Path to .mdb/.accdb file.
Object name (table, query, etc.); may be a character vector.
Property column name. Defaults to LvProp.
Logical; when TRUE, return mdbtools version.
Logical; defaults to TRUE. When TRUE, wraps the result in
an mdblist object so the dedicated print method is used.
A named list with one entry per element of name. Each entry is
itself a named list of named character vectors, one per property block
(e.g. "(none)" for table-level properties, or a column/field name).
Access individual values with p[["Orders"]][["(none)"]]["Description"].