Nothing
test_that("Test ambiguous prepare statements", {
con <- dbConnect(duckdb())
on.exit(dbDisconnect(con, shutdown = TRUE))
res <- dbGetQuery(con, "select ?", 42)
expect_identical(res[[1]], 42)
res <- dbGetQuery(con, "select ?", "hello world")
expect_identical(res[[1]], "hello world")
})
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.