R/initRegExp.R

Defines functions initRegExp

Documented in initRegExp

#' Add regular expression operator
#'
#' Forwarded to `initExtension(db, "regexp")` .
#'
#' @return Always \code{TRUE}, invisibly.
#'
#' @param db A \code{\linkS4class{SQLiteConnection}} object to add the
#' regular expression operator into the connection.
#' @export
#' @keywords internal
initRegExp <- function(db) {
  initExtension(db, "regexp")
}

Try the RSQLite package in your browser

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

RSQLite documentation built on Nov. 5, 2023, 1:10 a.m.