Nothing
#' @rdname duckdb_result-class
#' @inheritParams DBI::dbColumnInfo
#' @usage NULL
dbColumnInfo__duckdb_result <- function(res, ...) {
if (!res@env$open) {
stop("result has already been cleared")
}
return(data.frame(name = res@stmt_lst$names, type = res@stmt_lst$rtypes, stringsAsFactors = FALSE))
}
#' @rdname duckdb_result-class
#' @export
setMethod("dbColumnInfo", "duckdb_result", dbColumnInfo__duckdb_result)
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.