R/tcplConfList.R

Defines functions tcplConfList

Documented in tcplConfList

#-------------------------------------------------------------------------------
# tcplConfList: 
#-------------------------------------------------------------------------------

#' @rdname config_funcs
#' @export

tcplConfList <- function(show.pass = FALSE) {
  
  opts <- list("TCPL_DB", "TCPL_USER", "TCPL_HOST", "TCPL_DRVR")
  if (show.pass) opts <- c(opts, "TCPL_PASS")
  do.call(options, opts)
  
}

#-------------------------------------------------------------------------------

Try the tcpl package in your browser

Any scripts or data that you put into this service are public.

tcpl documentation built on Oct. 7, 2023, 1:06 a.m.