Nothing
      library(devtools)
library(DBI)
library(dcmodify)
devtools::load_all(path= "/code/package")
library(odbc)
library(testthat)
#sort(unique(odbcListDrivers()[[1]]))
test_dir("//code/tests/")
# # silly modification rules
# m <- modifier( if (cyl == 6)  gear <- 10
#              , gear[cyl == 4] <- 0  # this R syntax works too :-)
#              , if (gear == 3) cyl <- 2
#              )
# # setting up a table in the database
# con <- dbConnect(odbc::odbc(),
#                 driver="PostgreSQL Unicode",
#                 database = "test_postgres12_odbc",
#                  server = "db_postgres12_odbc",
#                  port = 5432,
#                  UID   = "admin",
#                  PWD    = "admin",)
# # Table might already exist in db so delete it and fail silently
# dbWriteTable(con, "mtcars", mtcars[,c("cyl", "gear")], overwrite = TRUE)
# tbl_mtcars <- dplyr::tbl(con, "mtcars")
# # "Houston, we have a table"
# head(tbl_mtcars)
# # lets modify on a copy of the table...
# tbl_m <- modify(tbl_mtcars, m, copy=TRUE)
# # and gear has changed...
# head(tbl_m)
# #> # Source:   lazy query [?? x 2]
# #> # Database: sqlite 3.35.5 []
# #>     cyl  gear
# #>   <dbl> <dbl>
# #> 1     6    10
# #> 2     6    10
# #> 3     4     0
# #> 4     6    10
# #> 5     2     3
# #> 6     6    10
# dbDisconnect(con)
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.