#' @title Drop Synthea Tables.
#'
#' @description This function drops all Synthea tables.
#'
#' @usage DropSyntheaTables(connectionDetails, syntheaDatabaseSchema)
#'
#' @param connectionDetails An R object of type\cr\code{connectionDetails} created using the
#' function \code{createConnectionDetails} in the
#' \code{DatabaseConnector} package.
#'
#' @param syntheaDatabaseSchema The name of the database schema that contains the Synthea
#' instance. Requires read and write permissions to this database. On SQL
#' Server, this should specifiy both the database and the schema,
#' so for example 'cdm_instance.dbo'.
#'
#'
#'@export
DropSyntheaTables <- function (connectionDetails, syntheaDatabaseSchema)
{
pathToSql <- base::system.file("sql/sql_server", package = "ETLSyntheaBuilder")
sqlFile <- base::paste0(pathToSql, "/", "drop_synthea_tables.sql")
sqlQuery <- base::readChar(sqlFile, base::file.info(sqlFile)$size)
renderedSql <- SqlRender::render(sqlQuery, synthea_schema = syntheaDatabaseSchema)
translatedSql <- SqlRender::translate(renderedSql, targetDialect = connectionDetails$dbms)
writeLines("Running drop_synthea_tables.sql")
conn <- DatabaseConnector::connect(connectionDetails)
DatabaseConnector::dbExecute(conn, translatedSql, progressBar = TRUE, reportOverallTime = TRUE)
on.exit(DatabaseConnector::disconnect(conn))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.