Nothing
#' Fetch
#'
#' A shortcut for \code{\link[DBI]{dbFetch}(res, n = n, row.names = FALSE)},
#' kept for compatibility reasons.
#'
#' @rdname fetch
#' @keywords internal
#' @usage NULL
fetch_SQLiteResult <- function(res, n = -1, ...) {
dbFetch(res, n = n, row.names = FALSE)
}
#' @rdname fetch
#' @export
setMethod("fetch", "SQLiteResult", fetch_SQLiteResult)
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.