Nothing
#' @rdname AdbiResult-class
#' @inheritParams DBI::dbGetRowCount
#' @usage NULL
dbGetRowCount_AdbiResult <- function(res, ...) {
if (!dbIsValid(res)) {
stop("Cannot return row count for invalid results.", call. = FALSE)
}
res <- meta(res, "row_count")
if (is.null(res)) {
return(0L)
}
res
}
#' @rdname AdbiResult-class
#' @export
setMethod("dbGetRowCount", "AdbiResult", dbGetRowCount_AdbiResult)
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.