Nothing
testthat::context("Statement Values class")
testthat::test_that("We can generate a simple VALUES statement", {
row1 <- ExprListValues$new(list(ExprValue$new("abc"),
ExprValue$new(123)))
x <- StmtValues$new(list(row1))
testthat::expect_equal(x$toString(), "VALUES ('abc', 123)")
row2 <- ExprListValues$new(list(ExprValue$new("def"),
ExprValue$new(456)))
x <- StmtValues$new(list(row1, row2))
testthat::expect_equal(x$toString(), "VALUES ('abc', 123), ('def', 456)")
})
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.