Nothing
#' @rdname duckdb_connection-class
#' @inheritParams DBI::dbIsValid
#' @usage NULL
dbIsValid__duckdb_connection <- function(dbObj, ...) {
valid <- FALSE
tryCatch(
{
dbGetQuery(dbObj, SQL("SELECT 1"))
valid <- TRUE
},
error = function(c) {
}
)
valid
}
#' @rdname duckdb_connection-class
#' @export
setMethod("dbIsValid", "duckdb_connection", dbIsValid__duckdb_connection)
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.