Skip to contents

update_agency_status() changes active flag on existing agency in the agency lookup table

Usage

update_agency_status(con, agency_id, set_active = TRUE)

Arguments

con

A DBI connection object obtained from DBI::dbConnect()

agency_id

A numeric ID for the targeted agency get_agencies

set_active

A boolean, TRUE for activating and FALSE for deactivating. When a record is active, it is returned by default when get_agencies is called. This helps preserve look up values that are valid in historic contexts, but are no longer valid for current data records.

See also

Other agency functions: add_agency(), delete_agency(), get_agencies(), update_agency()

Examples

# example database connection
cfg <- config::get()
con <- DBI::dbConnect(RPostgres::Postgres(),
                      dbname = cfg$dbname,
                      host = cfg$host,
                      port = cfg$port,
                      user = cfg$username,
                      password = cfg$password)
#> Error: connection to server at "localhost" (::1), port 5432 failed: Connection refused (0x0000274D/10061)
#> 	Is the server running on that host and accepting TCP/IP connections?
#> connection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused (0x0000274D/10061)
#> 	Is the server running on that host and accepting TCP/IP connections?

all_agencies <- get_agencies(con)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'dbObj' in selecting a method for function 'dbIsValid': object 'con' not found
View(all_agencies) # to view the ID of the agency needing status change
#> Error in eval(expr, envir, enclos): object 'all_agencies' not found

#deactivate
update_agency_status(con, 4, set_active=FALSE)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'dbObj' in selecting a method for function 'dbIsValid': object 'con' not found
#reactivate
update_agency_status(con, 4)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'dbObj' in selecting a method for function 'dbIsValid': object 'con' not found