SelectInsert

ldbc.query.builder.statement.SelectInsert
case class SelectInsert[F[_], P <: Product, T](query: TableQuery[F, P], columns: T, parameter: MapToTuple[F, Extract[T]])

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

Type parameters

F

The effect type

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

query

Trait for generating SQL table information.

Attributes

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[F, P]
def values(tuples: List[Extract[T]]): Insert[F, P]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product