R/dbWriteTable_AdbiConnection_SQL_data.frame.R

Defines functions dbWriteTable_AdbiConnection_SQL_data.frame

Documented in dbWriteTable_AdbiConnection_SQL_data.frame

#' @rdname AdbiConnection-class
#' @inheritParams DBI::dbWriteTable
#' @usage NULL
dbWriteTable_AdbiConnection_SQL_data.frame <- function(conn, name, value, ...) {
  dbWriteTable(conn, dbUnquoteIdentifier(conn, name)[[1L]], value, ...)
}

#' @rdname AdbiConnection-class
#' @export
setMethod(
  "dbWriteTable",
  c("AdbiConnection", "SQL", "data.frame"),
  dbWriteTable_AdbiConnection_SQL_data.frame
)

Try the adbi package in your browser

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

adbi documentation built on May 29, 2024, 7:12 a.m.