Returns the identifier of the table with the specified name in the specified base on a NocoDB server.
Usage
tbl_id(
name,
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")
)
Arguments
- name
NocoDB table name. A character scalar.
- id_base
NocoDB base identifier as returned by
base_id()
. A character scalar.- hostname
NocoDB server hostname. A character scalar.
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
andpassword
if provided.
See also
Other functions to manage NocoDB tables:
create_data_src_tbl()
,
create_tbl()
,
data_src_tbls()
,
delete_tbl()
,
reorder_tbl()
,
set_tbl_metadata()
,
tbl
,
tbls()
,
update_tbl()