ExprListValues | R Documentation |
This class represents a list of values.
This class represents a list of values.
Used to define a list of ExprValue instances for the INSERT query.
sqlq::Statement
-> sqlq::Expr
-> sqlq::ExprList
-> ExprListValues
new()
Initializer.
ExprListValues$new(values)
values
A list of ExprValue instances.
Nothing.
clone()
The objects of this class are cloneable with this method.
ExprListValues$clone(deep = FALSE)
deep
Whether to make a deep clone.
# To generate the list of values 1234, "The River", "1965":
ExprListValues$new(list(ExprValue$new(1234),
ExprValue$new("The River"),
ExprValue$new(1965)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.