Get all availaible column names from a table in the data warehouse

lims_table_fields(con, table_name, export_type = "character")

Arguments

con

connection to the lims Dwh. Typically by lims_connect()

table_name

name of the table from which the fields are wanted. Important tables are dimSample and factResult.

export_type

how to return: "character", "tibble" or "data.frame"

Value

character vector with column names of the table

Examples

if (FALSE) { # \dontrun{
library(inbolims)
con <- lims_connect()
lims_table_fields(con, "dimSample")
} # }