Nothing
#' @rdname SQLite
#' @usage NULL
dbConnect_SQLiteConnection <- function(drv, ...) {
if (drv@dbname %in% c("", ":memory:", "file::memory:")) {
stop("Can't clone a temporary database", call. = FALSE)
}
dbConnect(SQLite(), drv@dbname,
vfs = drv@vfs, flags = drv@flags,
loadable.extensions = drv@loadable.extensions
)
}
#' @rdname SQLite
#' @export
setMethod("dbConnect", "SQLiteConnection", dbConnect_SQLiteConnection)
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.