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