Nothing
#' Create a backend for the DBI (databases)
#'
#' @param backend The backend to create and because of DBI, a "drv" is mandatory
#' @return A new backend based on R6 class
#' @noRd
create_backend_dbi <- function(backend) {
if (is.null(backend$drv)) {
cli::cli_abort("drv is a required field for dbi backend")
}
create_backend(backend)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.