/var/www/myprog.com.ua/server/node/node_modules/mysql/lib/protocol/packets
NameSizeModeActions
AuthSwitchRequestPacket.js7070644editdlrm
AuthSwitchResponsePacket.js3750644editdlrm
ClientAuthenticationPacket.js20800644editdlrm
ComChangeUserPacket.js9600644editdlrm
ComPingPacket.js2890644editdlrm
ComQueryPacket.js4050644editdlrm
ComQuitPacket.js3010644editdlrm
ComStatisticsPacket.js3130644editdlrm
EmptyPacket.js1630644editdlrm
EofPacket.js7210644editdlrm
ErrorPacket.js10070644editdlrm
Field.js6490644editdlrm
FieldPacket.js32640644editdlrm
HandshakeInitializationPacket.js39580644editdlrm
index.js13600644editdlrm
LocalDataFilePacket.js3190644editdlrm
LocalInfileRequestPacket.js6090644editdlrm
OkPacket.js14140644editdlrm
OldPasswordPacket.js3670644editdlrm
ResultSetHeaderPacket.js3810644editdlrm
RowDataPacket.js40880644editdlrm
SSLRequestPacket.js9830644editdlrm
StatisticsPacket.js5440644editdlrm
UseOldPasswordPacket.js3790644editdlrm
Edit: /var/www/myprog.com.ua/server/node/node_modules/mysql/lib/protocol/packets/Field.js (649B)
var Types = require('../constants/types'); module.exports = Field; function Field(options) { options = options || {}; this.parser = options.parser; this.packet = options.packet; this.db = options.packet.db; this.table = options.packet.table; this.name = options.packet.name; this.type = Types[options.packet.type]; this.length = options.packet.length; } Field.prototype.string = function () { return this.parser.parseLengthCodedString(); }; Field.prototype.buffer = function () { return this.parser.parseLengthCodedBuffer(); }; Field.prototype.geometry = function () { return this.parser.parseGeometryValue(); };