Skip to main content

Class: ValuesClause

Defined in: lang-sql/src/ast/select.ts:193

A VALUES (...), ... clause providing inline row data.

Implements

Constructors

Constructor

new ValuesClause(values): ValuesClause

Defined in: lang-sql/src/ast/select.ts:194

Parameters

ParameterTypeDescription
valuesASTNode[][]The rows, each an array of column expressions.

Returns

ValuesClause

Properties

values

values: ASTNode[][]

Defined in: lang-sql/src/ast/select.ts:196

The rows, each an array of column expressions.

Methods

accept()

accept<Ret, Arg>(visitor, arg?): Ret

Defined in: lang-sql/src/ast/select.ts:199

Dispatches this node to the matching method on visitor.

Type Parameters

Type Parameter
Ret
Arg

Parameters

ParameterType
visitorSQLVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept