#' connect_table
#' @export
connect_table <- function(service, ...) {
stopifnot(service %in% c("lite"))
if (service == "lite") {
con <- dbConnect(RSQLite::SQLite(), ...)
return(con)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.