Package com.mysql.jdbc.log

Examples of com.mysql.jdbc.log.NullLogger


  public CompressedInputStream(Connection conn, InputStream streamFromServer) {
    this.traceProtocol = ((ConnectionPropertiesImpl)conn).traceProtocol;
    try {
      this.log = conn.getLog();
    } catch (SQLException e) {
      this.log = new NullLogger(null);
    }
   
    this.in = streamFromServer;
    this.inflater = new Inflater();
  }
View Full Code Here

TOP

Related Classes of com.mysql.jdbc.log.NullLogger

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.