3 - Binary Protocol (Prepared Statements)
The binary protocol defines a non-text-based (binary) format that is used instead of the text protocol, only for prepared statements.
-
Server Response Packets (Binary Protocol)
Response packets sent from the server to client in binary protocol -
COM_STMT_BULK_EXECUTE
Executes a bulk insert of a previously prepared statement. -
COM_STMT_CLOSE
Closes a previously prepared statement -
COM_STMT_EXECUTE
Executes a previously prepared statement -
COM_STMT_FETCH
Fetches rows from a prepared statement -
COM_STMT_PREPARE
Prepares a statement on the server -
COM_STMT_RESET
Resets a prepared statement on client and server to state after preparing -
COM_STMT_SEND_LONG_DATA
When data for a specific column is big, it can be sent separately
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.