Skip to contents

Sets the respective column as the display value for all tables in data. A convenience function that combines several of the other functions found in this package.

Usage

set_display_vals(
  data,
  id_base = base_id(hostname = hostname, email = email, password = password, api_token =
    api_token),
  hostname = pal::pkg_config_val("hostname"),
  email = pal::pkg_config_val("email"),
  password = pal::pkg_config_val("password"),
  api_token = pal::pkg_config_val("api_token"),
  quiet = FALSE
)

Arguments

data

Dataframe with the two columns name and display_col that defines the table-name-and-display-value-column mapping to be applied. Additional columns are ignored.

id_base

NocoDB base identifier as returned by base_id(). A character scalar.

hostname

NocoDB server hostname. A character scalar.

email

E-mail address of the NocoDB user to authenticate with.

password

Password of the NocoDB user to authenticate with.

api_token

NocoDB API token. Takes precedence over email and password if provided.

quiet

Whether or not to suppress printing status output from internal processing.

Value

NULL, invisibly.

See also

Other functions to manage NocoDB table columns: create_tbl_col(), delete_tbl_col(), set_display_val(), tbl_col(), tbl_col_id(), tbl_cols(), update_tbl_col()