Skip to main content
Glama
close_statement.js454 B
'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;

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/michael7736/mysql-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server