R/dbGetException_SQLiteConnection.R

Defines functions dbGetException_SQLiteConnection

Documented in dbGetException_SQLiteConnection

# dbWriteTable()
# dbReadTable()
# dbListTables()
# dbExistsTable()
# dbListFields()
# dbRemoveTable()
# dbBegin()
# dbCommit()
# dbRollback()
# other
#' @rdname SQLiteConnection-class
#' @usage NULL
dbGetException_SQLiteConnection <- function(conn, ...) {
  warning_once("RSQLite::dbGetException() is deprecated, please switch to using standard error handling via tryCatch().")
  list(
    errorNum = 0L,
    errorMsg = "OK"
  )
}
#' @rdname SQLiteConnection-class
#' @export
setMethod("dbGetException", "SQLiteConnection", dbGetException_SQLiteConnection)

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.