Table of Contents
git
Overview
mysql communication message structure
Home Database Mysql Tutorial Delete DB command package and analysis of mysql protocol

Delete DB command package and analysis of mysql protocol

Mar 07, 2017 pm 01:51 PM

git

https://github.com/sea-boat/mysql-protocol

Overview

The mysql client tells the server to delete a certain schema by deleting the DB command package.

mysql communication message structure

##string payloadMessage body, the length is the previously specified payload length
Type Name Description
int<3> payload length Stored according to the least significant byte first, 3-byte payload and 1-byte sequence number combination Into the message header
int<1> sequence number
Delete DB command package

Payload

1              [06] COM_DROP_DBstring[EOF]    schema name
Copy after login

More details: http://dev.mysql.com/doc/internals/en/com-drop-db.html

Delete DB command package operation

  1. Delete DB command package class

  2. /**
     * 
     * &lt;pre&gt;&lt;b&gt;mysql drop db packet.&lt;/b&gt;&lt;/pre&gt;
     * @author 
     * &lt;pre&gt;seaboat&lt;/pre&gt;
     * &lt;pre&gt;&lt;b&gt;email: &lt;/b&gt;849586227@qq.com&lt;/pre&gt;
     * &lt;pre&gt;&lt;b&gt;blog: &lt;/b&gt;http://www.php.cn/;/pre&gt;
     * @version 1.0
     * @see http://www.php.cn/
     */public class DropDBPacket extends MySQLPacket {
        public byte flag;    public byte[] schema;    @Override
        public void read(byte[] data) {
            MySQLMessage mm = new MySQLMessage(data);
            packetLength = mm.readUB3();
            packetId = mm.read();
            flag = mm.read();        this.schema = mm.readBytes();
        }    @Override
        public void write(ByteBuffer buffer) {
            BufferUtil.writeUB3(buffer, calcPacketSize());
            buffer.put(packetId);
            buffer.put(COM_DROP_DB);
            buffer.put(schema);
        }    @Override
        public int calcPacketSize() {        int i = 1;
            i += schema.length;        return i;
        }    @Override
        protected String getPacketInfo() {        return &quot;MySQL Drop DB Packet&quot;;
        }
    
    }
    Copy after login
    The above is the content of deleting DB command package and analysis of mysql protocol , for more related content, please pay attention to the PHP Chinese website (www.php.cn)!



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

PHP's big data structure processing skills

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

How to optimize MySQL query performance in PHP?

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

How to use MySQL backup and restore in PHP?

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into a MySQL table using PHP?

What are the application scenarios of Java enumeration types in databases? What are the application scenarios of Java enumeration types in databases? May 05, 2024 am 09:06 AM

What are the application scenarios of Java enumeration types in databases?

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

How to fix mysql_native_password not loaded errors on MySQL 8.4

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

How to use MySQL stored procedures in PHP?

Performance optimization strategies for PHP array paging Performance optimization strategies for PHP array paging May 02, 2024 am 09:27 AM

Performance optimization strategies for PHP array paging

See all articles