Nothing
# show()
#' @rdname SQLiteConnection-class
#' @usage NULL
show_SQLiteConnection <- function(object) {
cat("<SQLiteConnection>\n")
if (dbIsValid(object)) {
cat(" Path: ", object@dbname, "\n", sep = "")
cat(" Extensions: ", object@loadable.extensions, "\n", sep = "")
} else {
cat(" DISCONNECTED\n")
}
}
#' @rdname SQLiteConnection-class
#' @export
setMethod("show", "SQLiteConnection", show_SQLiteConnection)
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.