ldbc.connector.net.packet.response.ComStmtPrepareOkPacket
See theComStmtPrepareOkPacket companion object
case class ComStmtPrepareOkPacket(status: Int, statementId: Long, numColumns: Int, numParams: Int, reserved1: Int, warningCount: Int, metadataFollows: Option[Int]) extends ResponsePacket
Packet indicating success when request.ComStmtPreparePacket packet is sent.
Value parameters
- metadataFollows
-
Flag specifying if metadata are skipped or not.
- numColumns
-
The number of columns in the result set.
- numParams
-
The number of parameters in the prepared statement.
- reserved1
-
Always 0x00
- statementId
-
The server assigns a statement ID to the prepared statement. This value is used for subsequent operations using the statement.
- status
-
0x00: No error
- warningCount
-
The number of warnings.
Attributes
- Companion
- object
- Source
- ComStmtPrepareOkPacket.scala
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait ResponsePackettrait Packetclass Objecttrait Matchableclass Any
Members list
In this article