Use this Shiny app to search a cBase. There is also an RStudio add-in.
shiny_explore(
preset = read_secret("db.preset_default_shiny"),
diver_cbase = NULL,
diver_project = read_secret("db.diver_project"),
diver_dsn = if (diver_testserver == FALSE) read_secret("db.diver_dsn") else
read_secret("db.diver_dsn_test"),
diver_testserver = FALSE,
diver_tablename = "data"
)
a preset to choose from presets()
. Will be ignored if diver_cbase
is set, even if it is set to NULL
. Be sure to read the documentation on how to use presets, and to see in which order the YAML keys will be run.
properties to set in db_connect()
. The diver_cbase
argument will be based on preset
, but can also be set to blank NULL
to manually select a cBase in a popup window.
name of the database table to download data from. This is hard-coded by DI and should normally never be changed.