Nothing
#' @rdname hidden_aliases
#' @usage NULL
dbFetch_DBIResultArrow <- function(res, n = -1, ...) {
if (is.infinite(n)) {
n <- -1
}
if (n != -1) {
stop("Cannot dbFetch() an Arrow result unless n = -1")
}
as.data.frame(
dbFetchArrow(res, ...)
)
}
#' @rdname hidden_aliases
#' @export
setMethod("dbFetch", signature("DBIResultArrow"), dbFetch_DBIResultArrow)
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.