Maison > Article > base de données > Introduction détaillée au package EOF et analyse du protocole mysql
https://github.com/sea-boat/mysql-protocol
Le package EOF de MySQL est utilisé pour indiquer la fin des résultats de la requête.
类型 | 名字 | 描述 |
---|---|---|
int5bdf4c78156c7953567bb5a0aef2fc53 | payload长度 | 按照the least significant byte first存储,3个字节的payload和1个字节的序列号组合成报文头 |
intf35d6e602fd7d0f0edfa6f7d103c1b57 | 序列号 | |
string | payload | 报文体,长度即为前面指定的payload长度 |
Charge utile
Type Name Description int<1> header [fe] EOF header if capabilities & CLIENT_PROTOCOL_41 { int<2> warnings number of warnings int<2> status_flags Status Flags }
Plus détails : http://dev.mysql.com/doc/internals/en/packet-EOF_Packet.html
Classe de package EOF
/** * * <pre class="brush:php;toolbar:false"><b>mysql eof packet.</b>* @author *
seaboat*
<b>email: </b>849586227@qq.com*
<b>blog: </b>http://www.php.cn/;/pre> * @version 1.0 * @see http://www.php.cn/ */public class EOFPacket extends MySQLPacket { public byte header = (byte) 0xfe; public int warningCount; public int status = 2; @Override public void read(byte[] data) { MySQLMessage mm = new MySQLMessage(data); packetLength = mm.readUB3(); packetId = mm.read(); header = mm.read(); warningCount = mm.readUB2(); status = mm.readUB2(); } @Override public void write(ByteBuffer buffer) { int size = calcPacketSize(); BufferUtil.writeUB3(buffer, size); buffer.put(packetId); buffer.put(header); BufferUtil.writeUB2(buffer, warningCount); BufferUtil.writeUB2(buffer, status); } @Override public int calcPacketSize() { return 5; } @Override protected String getPacketInfo() { return "MySQL EOF Packet"; } }
Ce qui précède est une introduction détaillée au package EOF et une analyse du protocole mysql. Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !