ConnectionSettings.copy constructor
ConnectionSettings.copy()
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;
}