Nothing
#' @rdname duckdb_connection-class
#' @inheritParams DBI::dbListFields
#' @usage NULL
dbListFields__duckdb_connection_character <- function(conn, name, ...) {
names(dbGetQuery(
conn,
sqlInterpolate(
conn,
"SELECT * FROM ? WHERE FALSE",
dbQuoteIdentifier(conn, name)
)
))
}
#' @rdname duckdb_connection-class
#' @export
setMethod("dbListFields", c("duckdb_connection", "character"), dbListFields__duckdb_connection_character)
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.