ldbc.connector.net.protocol.PreparedStatement
See thePreparedStatement companion trait
object PreparedStatement
Attributes
- Companion
- trait
- Source
- PreparedStatement.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
PreparedStatement.type
Members list
Type members
Classlikes
case class Client[F[_]](socket: PacketSocket[F], initialPacket: InitialPacket, sql: String, utilityCommands: UtilityCommands[F], params: Ref[F, ListMap[Int, Parameter]], batchedArgs: Ref[F, Vector[String]], resetSequenceId: F[Unit], resultSetType: Int, resultSetConcurrency: Int)(implicit evidence$1: Temporal[F], evidence$2: Exchange[F], evidence$3: Tracer[F], ev: MonadError[F, Throwable]) extends SharedPreparedStatement[F]
PreparedStatement for query construction at the client side.
PreparedStatement for query construction at the client side.
Type parameters
- F
-
the effect type
Value parameters
- ev
-
the effect type class
- initialPacket
-
the initial packet
- params
-
the parameters
- resetSequenceId
-
the reset sequence id
- socket
-
the packet socket
- sql
-
the SQL statement
Attributes
- Source
- PreparedStatement.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait SharedPreparedStatement[F]trait PreparedStatement[F]trait Statement[F]class Objecttrait Matchableclass AnyShow all
case class Server[F[_]](socket: PacketSocket[F], initialPacket: InitialPacket, statementId: Long, sql: String, utilityCommands: UtilityCommands[F], params: Ref[F, ListMap[Int, Parameter]], batchedArgs: Ref[F, Vector[String]], resetSequenceId: F[Unit], resultSetType: Int, resultSetConcurrency: Int)(implicit evidence$1: Temporal[F], evidence$2: Exchange[F], evidence$3: Tracer[F], ev: MonadError[F, Throwable]) extends SharedPreparedStatement[F]
PreparedStatement for query construction at the server side.
PreparedStatement for query construction at the server side.
Type parameters
- F
-
The effect type
Value parameters
- initialPacket
-
the initial packet
- params
-
the parameters
- resetSequenceId
-
the reset sequence id
- socket
-
the packet socket
- sql
-
the SQL statement
- statementId
-
the statement id
Attributes
- Source
- PreparedStatement.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait SharedPreparedStatement[F]trait PreparedStatement[F]trait Statement[F]class Objecttrait Matchableclass AnyShow all
sealed trait SharedPreparedStatement[F[_]](using ev: MonadError[F, Throwable]) extends PreparedStatement[F]
Attributes
- Source
- PreparedStatement.scala
- Supertypes
- Known subtypes
In this article