Nothing
#' @rdname duckdb_result-class
#' @inheritParams DBI::dbGetRowsAffected
#' @usage NULL
dbGetRowsAffected__duckdb_result <- function(res, ...) {
if (!res@env$open) {
stop("result has already been cleared")
}
if (is.null(res@env$resultset)) {
return(NA_integer_)
}
return(res@env$rows_affected)
}
#' @rdname duckdb_result-class
#' @export
setMethod("dbGetRowsAffected", "duckdb_result", dbGetRowsAffected__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.