SelectInsert

ldbc.query.builder.statement.SelectInsert
case class SelectInsert[P <: Product, T](table: Table[P], columns: T, parameter: MapToTuple[Extract[T]])(using x$4: IsColumn[T] =:= true)

A model for constructing INSERT statements that insert values into specified columns in MySQL.

Type parameters

P

Base trait for all products

T

Tuple type of the property with type parameter P

Value parameters

columns

List of columns into which values are to be inserted.

parameter

Parameters of the value to be inserted

Attributes

Source
Insert.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def values(tuple: Extract[T]): Insert[P]

Attributes

Source
Insert.scala
def values(tuples: List[Extract[T]]): Insert[P]

Attributes

Source
Insert.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product