Nothing
#' @rdname AdbiConnection-class
#' @usage NULL
dbAppendTable_AdbiConnection <- function(conn, name, value, ...,
row.names = NULL) {
if (!is.null(row.names)) {
stop("Can't pass `row.names` to `dbAppendTable()`", call. = FALSE)
}
query <- sqlAppendTable(
con = conn,
table = name,
values = value,
row.names = row.names,
...
)
dbExecute(conn, query)
}
#' @rdname AdbiConnection-class
#' @export
setMethod(
"dbAppendTable",
signature("AdbiConnection"),
dbAppendTable_AdbiConnection
)
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.