D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
mysql2
/
lib
/
packets
/
Filename :
close_statement.js
back
Copy
'use strict'; const Packet = require('../packets/packet'); const CommandCodes = require('../constants/commands'); class CloseStatement { constructor(id) { this.id = id; } // note: no response sent back toPacket() { const packet = new Packet(0, Buffer.allocUnsafe(9), 0, 9); packet.offset = 4; packet.writeInt8(CommandCodes.STMT_CLOSE); packet.writeInt32(this.id); return packet; } } module.exports = CloseStatement;