Nothing
testthat::context("Statement Insert class")
testthat::test_that("We can generate a simple INSERT statement", {
fields <- ExprListFields$new(list(ExprField$new("author"),
ExprField$new("title")))
x <- StmtInsert$new(tabl="books", fields=fields)
testthat::expect_equal(x$toString(), 'INSERT INTO books (author, "title")')
})
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.