SQL

ldbc.dsl.SQL
case class SQL[F[_]](statement: String, params: Seq[ParameterBinder[F]])

A model with a query string and parameters to be bound to the query string that is executed by PreparedStatement, etc.

Type parameters

F

The effect type

Value parameters

params

statement has '?' that the statement has.

statement

an SQL statement that may contain one or more '?' IN parameter placeholders

Attributes

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

Members list

Value members

Concrete methods

def ++(sql: SQL[F]): SQL[F]

Attributes

Source
SQL.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product