Nothing
#' List CDM versions supported by this package
#'
#' @return A character vector containing the supported Common Data Model (CDM) versions in major.minor format.
#' @export
listSupportedVersions <- function() {
supportedVersions <- c("5.3", "5.4")
return(supportedVersions)
}
#' List RDBMS dialects supported by this package
#'
#' @return A list containing the supported Structured Query Language (SQL) dialects.
#' @export
listSupportedDialects <- function() {
sqlRenderSupportedDialects <- SqlRender::listSupportedDialects()
supportedDialects <- sqlRenderSupportedDialects$dialect
return(supportedDialects)
}
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.