Read identifiers to be ignored from the local database
Source:R/cas_ignore_id.R
cas_read_db_ignore_id.RdRead identifiers to be ignored from the local database
Usage
cas_read_db_ignore_id(
db_connection = NULL,
db_folder = NULL,
index_group = NULL,
disconnect_db = TRUE,
...
)Examples
cas_set_options(
base_folder = fs::path(tempdir(), "R", "cas_read_db_ignore_id"),
db_folder = fs::path(tempdir(), "R", "cas_read_db_ignore_id"),
project = "example_project",
website = "example_website"
)
cas_enable_db()
cas_write_db_ignore_id(id = sample(x = 1:100, size = 10))
#> ℹ Folder /tmp/RtmprKtXJ9/R/cas_read_db_ignore_id for storing project and
#> website files created.
#> ✔ 10 identifiers added to ignore table.
cas_read_db_ignore_id()
#> # A tibble: 10 × 1
#> id
#> <dbl>
#> 1 70
#> 2 87
#> 3 100
#> 4 75
#> 5 81
#> 6 13
#> 7 40
#> 8 89
#> 9 48
#> 10 93