Package org.adbcj.postgresql.codec

Examples of org.adbcj.postgresql.codec.ConfigurationVariable


  private AbstractBackendMessage decodeParameterStatus(DecoderInputStream input) throws IOException {
    Charset charset = connectionState.getBackendCharset();
    String name = input.readString(charset);
    String value = input.readString(charset);
    ConfigurationVariable cv = ConfigurationVariable.fromName(name);
    if (cv == null) {
      logger.warn("No ConfigurationVariable entry for {}", name);
    }
    return new ParameterMessage(cv, value);
  }
View Full Code Here

TOP

Related Classes of org.adbcj.postgresql.codec.ConfigurationVariable

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.