PreparedQuery

skunk.net.Protocol.PreparedQuery
abstract class PreparedQuery[F[_], A, B](val id: StatementId, val query: Query[A, B], val rowDescription: TypedRowDescription) extends PreparedStatement[F, A]

A prepared query.

Value parameters

id

the Postgres identifier of this statement.

query

the userland Query used to construct this PreparedQuery.

rowDescription

a RowDescription specifying this PreparedQuery's output format.'.

Attributes

Source
Protocol.scala
Graph
Supertypes
trait PreparedStatement[F, A]
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def bind(args: A, argsOrigin: Origin): Resource[F, QueryPortal[F, A, B]]

Attributes

Source
Protocol.scala

Concrete methods

Attributes

Source
Protocol.scala

Concrete fields

Attributes

Source
Protocol.scala
val query: Query[A, B]

Attributes

Source
Protocol.scala