Nothing
library(testthat)
for (testServer in testServers) {
test_that(addDbmsToLabel("Get table names", testServer), {
connection <- connect(testServer$connectionDetails)
on.exit(disconnect(connection))
tables <- getTableNames(connection, testServer$cdmDatabaseSchema)
expect_true("person" %in% tables)
expect_true(existsTable(connection, testServer$cdmDatabaseSchema, "person"))
# This does not work on SQL Server:
if (testServer$connectionDetails$dbms != "sql server") {
expect_true(DBI::dbExistsTable(connection, "person"))
}
})
}
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.