seatable_select_options returns the option names currently
defined for one or more single- or multiple-select columns.
seatable_add_select_options adds new options to a column's vocabulary.
Usage
seatable_select_options(
table,
col = NULL,
base = NULL,
con = default_connection()
)
seatable_add_select_options(
table,
col,
options,
base = NULL,
con = default_connection()
)Arguments
- table
Name of the table.
- col
For
seatable_select_options, single- or multiple-select column name(s);NULL(the default) returns every such column. Forseatable_add_select_options, a single column name.- base
Optional base name or
Baseobject; discovered fromtablewhenNULL.- con
- options
Character vector of new option name(s) to add.