Nothing
#' Local DuckDB connection fixture for testing
#'
#' Creates a DuckDB connection that will be automatically disconnected
#' when the calling function exits. This is a test fixture that follows
#' testthat guidelines for resource management.
#'
#' @param ... Additional arguments passed to [duckdb()]
#'
#' @return A DuckDB connection object
#' @noRd
#'
#' @examples
#' \dontrun{
#' # In a test
#' test_that("my test", {
#' con <- local_con()
#' # Use the connection...
#' # It will be automatically disconnected when the test exits
#' })
#' }
local_con <- function(..., drv = duckdb()) {
con <- dbConnect(drv, ...)
withr::defer_parent(dbDisconnect(con, shutdown = TRUE))
con
}
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.