ExprListValues: This class represents a list of values.

ExprListValuesR Documentation

This class represents a list of values.

Description

This class represents a list of values.

This class represents a list of values.

Details

Used to define a list of ExprValue instances for the INSERT query.

Super classes

sqlq::Statement -> sqlq::Expr -> sqlq::ExprList -> ExprListValues

Methods

Public methods

Inherited methods

Method new()

Initializer.

Usage
ExprListValues$new(values)
Arguments
values

A list of ExprValue instances.

Returns

Nothing.


Method clone()

The objects of this class are cloneable with this method.

Usage
ExprListValues$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

# To generate the list of values 1234, "The River", "1965":
ExprListValues$new(list(ExprValue$new(1234),
                        ExprValue$new("The River"),
                        ExprValue$new(1965)))


sqlq documentation built on Sept. 16, 2025, 9:10 a.m.