ConnectionSettings.copy constructor

ConnectionSettings.copy(
  1. ConnectionSettings o
)

Implementation

ConnectionSettings.copy(ConnectionSettings o) {
  this.host = o.host;
  this.port = o.port;
  this.user = o.user;
  this.password = o.password;
  this.db = o.db;
  this.useCompression = o.useCompression;
  this.useSSL = o.useSSL;
  this.maxPacketSize = o.maxPacketSize;
  this.timeout = o.timeout;
  this.characterSet = o.characterSet;
}