#' @rdname mock-db-methods
#' @export
setMethod(
"dbBegin",
"DBIMockConnection",
function(conn, ..., name = NULL) {
return(invisible(TRUE))
}
)
#' @rdname mock-db-methods
#' @export
setMethod(
"dbCommit",
"DBIMockConnection",
function(conn, ..., name = NULL) {
return(invisible(TRUE))
}
)
#' @rdname mock-db-methods
#' @export
setMethod(
"dbRollback",
"DBIMockConnection",
function(conn, ..., name = NULL) {
return(invisible(TRUE))
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.