Nothing
#' @rdname duckdb_result-class
#' @inheritParams DBI::dbGetRowCount
#' @usage NULL
dbGetRowCount__duckdb_result <- function(res, ...) {
if (!res@env$open) {
stop("result has already been cleared")
}
return(res@env$rows_fetched)
}
#' @rdname duckdb_result-class
#' @export
setMethod("dbGetRowCount", "duckdb_result", dbGetRowCount__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.