R/fetch_SQLiteResult.R

Defines functions fetch_SQLiteResult

Documented in fetch_SQLiteResult

#' 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)

Try the RSQLite package in your browser

Any scripts or data that you put into this service are public.

RSQLite documentation built on May 29, 2024, 3:30 a.m.