Package com.google.code.or.net.impl.packet.command

Examples of com.google.code.or.net.impl.packet.command.ComBinlogDumpPacket


  /**
   *
   */
  protected void dumpBinlog() throws Exception {
    //
    final ComBinlogDumpPacket command = new ComBinlogDumpPacket();
    command.setBinlogFlag(0);
    command.setServerId(this.serverId);
    command.setBinlogPosition(this.binlogPosition);
    command.setBinlogFileName(StringColumn.valueOf(this.binlogFileName.getBytes(this.encoding)));
    this.transport.getOutputStream().writePacket(command);
    this.transport.getOutputStream().flush();
   
    //
    final Packet packet = this.transport.getInputStream().readPacket();
View Full Code Here

TOP

Related Classes of com.google.code.or.net.impl.packet.command.ComBinlogDumpPacket

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.